aboutsummaryrefslogtreecommitdiff
path: root/cc/primitive_set.h
diff options
context:
space:
mode:
authorwiktorg <wiktorg@google.com>2020-03-20 10:05:27 -0700
committerCopybara-Service <copybara-worker@google.com>2020-03-20 10:05:58 -0700
commitc50006a45f3333e169717e2ae44379310c151259 (patch)
tree41e044f3d3dbc457c6166b6d6b9486b606734291 /cc/primitive_set.h
parent2ad40e07e85f38ab38bf43262705a2ca3cdd236c (diff)
downloadtink-c50006a45f3333e169717e2ae44379310c151259.tar.gz
Replace unneeded ToStatusF
PiperOrigin-RevId: 302048957
Diffstat (limited to 'cc/primitive_set.h')
-rw-r--r--cc/primitive_set.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/cc/primitive_set.h b/cc/primitive_set.h
index e00b752d7..c70147b0e 100644
--- a/cc/primitive_set.h
+++ b/cc/primitive_set.h
@@ -58,14 +58,14 @@ class PrimitiveSet {
static crypto::tink::util::StatusOr<std::unique_ptr<Entry<P>>> New(
std::unique_ptr<P> primitive, google::crypto::tink::Keyset::Key key) {
if (key.status() != google::crypto::tink::KeyStatusType::ENABLED) {
- return ToStatusF(crypto::tink::util::error::INVALID_ARGUMENT,
- "The key must be ENABLED.");
+ return util::Status(crypto::tink::util::error::INVALID_ARGUMENT,
+ "The key must be ENABLED.");
}
auto identifier_result = CryptoFormat::get_output_prefix(key);
if (!identifier_result.ok()) return identifier_result.status();
if (primitive == nullptr) {
- return ToStatusF(crypto::tink::util::error::INVALID_ARGUMENT,
- "The primitive must be non-null.");
+ return util::Status(crypto::tink::util::error::INVALID_ARGUMENT,
+ "The primitive must be non-null.");
}
std::string identifier = identifier_result.ValueOrDie();
return absl::WrapUnique(new Entry(std::move(primitive), identifier,
@@ -142,18 +142,18 @@ class PrimitiveSet {
// Sets the given 'primary' as the primary primitive of this set.
crypto::tink::util::Status set_primary(Entry<P>* primary) {
if (!primary) {
- return ToStatusF(crypto::tink::util::error::INVALID_ARGUMENT,
- "The primary primitive must be non-null.");
+ return util::Status(crypto::tink::util::error::INVALID_ARGUMENT,
+ "The primary primitive must be non-null.");
}
if (primary->get_status() != google::crypto::tink::KeyStatusType::ENABLED) {
- return ToStatusF(crypto::tink::util::error::INVALID_ARGUMENT,
- "Primary has to be enabled.");
+ return util::Status(crypto::tink::util::error::INVALID_ARGUMENT,
+ "Primary has to be enabled.");
}
auto entries_result = get_primitives(primary->get_identifier());
if (!entries_result.ok()) {
- return ToStatusF(crypto::tink::util::error::INVALID_ARGUMENT,
- "Primary cannot be set to an entry which is "
- "not held by this primitive set.");
+ return util::Status(crypto::tink::util::error::INVALID_ARGUMENT,
+ "Primary cannot be set to an entry which is "
+ "not held by this primitive set.");
}
primary_ = primary;