xref: /aosp_15_r20/external/tink/cc/internal/key_status_util.cc (revision e7b1675dde1b92d52ec075b0a92829627f2c52a5)
1 // Copyright 2022 Google LLC
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //      http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 //
15 ////////////////////////////////////////////////////////////////////////////////
16 
17 #include "tink/internal/key_status_util.h"
18 
19 #include <string>
20 
21 #include "absl/status/status.h"
22 #include "tink/key_status.h"
23 #include "tink/util/status.h"
24 #include "tink/util/statusor.h"
25 #include "proto/tink.pb.h"
26 
27 namespace crypto {
28 namespace tink {
29 namespace internal {
30 
31 using ::google::crypto::tink::KeyStatusType;
32 
FromKeyStatusType(KeyStatusType status_type)33 util::StatusOr<KeyStatus> FromKeyStatusType(KeyStatusType status_type) {
34   switch (status_type) {
35     case KeyStatusType::ENABLED:
36       return KeyStatus::kEnabled;
37     case KeyStatusType::DISABLED:
38       return KeyStatus::kDisabled;
39     case KeyStatusType::DESTROYED:
40       return KeyStatus::kDestroyed;
41     default:
42       return util::Status(absl::StatusCode::kInvalidArgument,
43                           "Invalid key status type.");
44   }
45 }
46 
ToKeyStatusType(KeyStatus status)47 util::StatusOr<KeyStatusType> ToKeyStatusType(KeyStatus status) {
48   switch (status) {
49     case KeyStatus::kEnabled:
50       return KeyStatusType::ENABLED;
51     case KeyStatus::kDisabled:
52       return KeyStatusType::DISABLED;
53     case KeyStatus::kDestroyed:
54       return KeyStatusType::DESTROYED;
55     default:
56       return util::Status(absl::StatusCode::kInvalidArgument,
57                           "Invalid key status.");
58   }
59 }
60 
ToKeyStatusName(KeyStatus status)61 std::string ToKeyStatusName(KeyStatus status) {
62   switch (status) {
63     case KeyStatus::kEnabled:
64     return KeyStatusType_Name(KeyStatusType::ENABLED);
65     case KeyStatus::kDisabled:
66     return KeyStatusType_Name(KeyStatusType::DISABLED);
67     case KeyStatus::kDestroyed:
68       return KeyStatusType_Name(KeyStatusType::DESTROYED);
69     default:
70       return KeyStatusType_Name(KeyStatusType::UNKNOWN_STATUS);
71   }
72 }
73 
74 }  // namespace internal
75 }  // namespace tink
76 }  // namespace crypto
77