| // Copyright 2017 Google Inc. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| // |
| //////////////////////////////////////////////////////////////////////////////// |
| |
| #include "tink/aead/aes_ctr_hmac_aead_key_manager.h" |
| |
| #include "gmock/gmock.h" |
| #include "gtest/gtest.h" |
| #include "tink/config.h" |
| #include "tink/mac/mac_config.h" |
| #include "tink/subtle/aead_test_util.h" |
| #include "tink/subtle/aes_ctr_boringssl.h" |
| #include "tink/subtle/encrypt_then_authenticate.h" |
| #include "tink/subtle/hmac_boringssl.h" |
| #include "tink/util/enums.h" |
| #include "tink/util/status.h" |
| #include "tink/util/statusor.h" |
| #include "tink/util/test_matchers.h" |
| #include "proto/aes_ctr_hmac_aead.pb.h" |
| #include "proto/common.pb.h" |
| #include "proto/tink.pb.h" |
| |
| namespace crypto { |
| namespace tink { |
| |
| using ::crypto::tink::test::IsOk; |
| using ::crypto::tink::test::StatusIs; |
| using ::crypto::tink::util::StatusOr; |
| using ::google::crypto::tink::AesCtrHmacAeadKey; |
| using ::google::crypto::tink::AesCtrHmacAeadKeyFormat; |
| using ::google::crypto::tink::HashType; |
| using ::google::crypto::tink::KeyData; |
| using ::testing::Eq; |
| using ::testing::Not; |
| using ::testing::SizeIs; |
| |
| namespace { |
| |
| TEST(AesCtrHmacAeadKeyManagerTest, Basics) { |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().get_version(), Eq(0)); |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().get_key_type(), |
| Eq("type.googleapis.com/google.crypto.tink.AesCtrHmacAeadKey")); |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().key_material_type(), |
| Eq(google::crypto::tink::KeyData::SYMMETRIC)); |
| } |
| |
| TEST(AesCtrHmacAeadKeyManagerTest, ValidateEmptyKey) { |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().ValidateKey(AesCtrHmacAeadKey()), |
| StatusIs(util::error::INVALID_ARGUMENT)); |
| } |
| |
| AesCtrHmacAeadKey CreateValidKey() { |
| AesCtrHmacAeadKey key; |
| key.set_version(0); |
| auto aes_ctr_key = key.mutable_aes_ctr_key(); |
| aes_ctr_key->set_key_value(std::string(16, 'a')); |
| aes_ctr_key->mutable_params()->set_iv_size(12); |
| auto hmac_key = key.mutable_hmac_key(); |
| hmac_key->set_key_value(std::string(16, 'b')); |
| hmac_key->mutable_params()->set_hash(HashType::SHA1); |
| hmac_key->mutable_params()->set_tag_size(10); |
| return key; |
| } |
| |
| TEST(AesCtrHmacAeadKeyManagerTest, ValidKey) { |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().ValidateKey(CreateValidKey()), IsOk()); |
| } |
| |
| TEST(AesCtrHmacAeadKeyManagerTest, AesKeySizes) { |
| AesCtrHmacAeadKey key = CreateValidKey(); |
| for (int len = 0; len < 42; len++) { |
| key.mutable_aes_ctr_key()->set_key_value(std::string(len, 'a')); |
| if (len == 16 || len == 32) { |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().ValidateKey(key), IsOk()) |
| << " for length " << len; |
| } else { |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().ValidateKey(key), Not(IsOk())) |
| << " for length " << len; |
| } |
| } |
| } |
| |
| TEST(AesCtrHmacAeadKeyManagerTest, HmacKeySizes) { |
| AesCtrHmacAeadKey key = CreateValidKey(); |
| for (int len = 0; len < 42; len++) { |
| key.mutable_hmac_key()->set_key_value(std::string(len, 'b')); |
| if (len >= 16) { |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().ValidateKey(key), IsOk()) |
| << " for length " << len; |
| } else { |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().ValidateKey(key), Not(IsOk())) |
| << " for length " << len; |
| } |
| } |
| } |
| |
| AesCtrHmacAeadKeyFormat CreateValidKeyFormat() { |
| AesCtrHmacAeadKeyFormat key_format; |
| auto aes_ctr_key_format = key_format.mutable_aes_ctr_key_format(); |
| aes_ctr_key_format->set_key_size(16); |
| aes_ctr_key_format->mutable_params()->set_iv_size(16); |
| auto hmac_key_format = key_format.mutable_hmac_key_format(); |
| hmac_key_format->set_key_size(21); |
| hmac_key_format->mutable_params()->set_hash(HashType::SHA256); |
| hmac_key_format->mutable_params()->set_tag_size(16); |
| return key_format; |
| } |
| |
| TEST(AesCtrHmacAeadKeyManagerTest, ValidateKeyFormat) { |
| AesCtrHmacAeadKeyFormat key_format = CreateValidKeyFormat(); |
| EXPECT_THAT( |
| AesCtrHmacAeadKeyManager().ValidateKeyFormat(CreateValidKeyFormat()), |
| IsOk()); |
| } |
| |
| TEST(AesCtrHmacAeadKeyManagerTest, ValidateEmptyKeyFormat) { |
| EXPECT_THAT( |
| AesCtrHmacAeadKeyManager().ValidateKeyFormat(AesCtrHmacAeadKeyFormat()), |
| Not(IsOk())); |
| } |
| |
| TEST(AesCtrHmacAeadKeyManagerTest, ValidateKeyFormatKeySizes) { |
| AesCtrHmacAeadKeyFormat key_format = CreateValidKeyFormat(); |
| for (int len = 0; len < 42; ++len) { |
| key_format.mutable_aes_ctr_key_format()->set_key_size(len); |
| if (len == 16 || len == 32) { |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().ValidateKeyFormat(key_format), |
| IsOk()) |
| << "for length " << len; |
| } else { |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().ValidateKeyFormat(key_format), |
| Not(IsOk())) |
| << "for length " << len; |
| } |
| } |
| } |
| |
| TEST(AesCtrHmacAeadKeyManagerTest, ValidateKeyFormatHmacKeySizes) { |
| AesCtrHmacAeadKeyFormat key_format = CreateValidKeyFormat(); |
| for (int len = 0; len < 42; ++len) { |
| key_format.mutable_hmac_key_format()->set_key_size(len); |
| if (len >= 16) { |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().ValidateKeyFormat(key_format), |
| IsOk()) |
| << "for length " << len; |
| } else { |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().ValidateKeyFormat(key_format), |
| Not(IsOk())) |
| << "for length " << len; |
| } |
| } |
| } |
| |
| TEST(AesCtrHmacAeadKeyManagerTest, CreateKey) { |
| AesCtrHmacAeadKeyFormat key_format = CreateValidKeyFormat(); |
| StatusOr<AesCtrHmacAeadKey> key_or = |
| AesCtrHmacAeadKeyManager().CreateKey(key_format); |
| ASSERT_THAT(key_or.status(), IsOk()); |
| const AesCtrHmacAeadKey& key = key_or.ValueOrDie(); |
| EXPECT_THAT(AesCtrHmacAeadKeyManager().ValidateKey(key), |
| IsOk()); |
| EXPECT_THAT(key.aes_ctr_key().params().iv_size(), |
| Eq(key_format.aes_ctr_key_format().params().iv_size())); |
| EXPECT_THAT(key.aes_ctr_key().key_value(), |
| SizeIs(key_format.aes_ctr_key_format().key_size())); |
| EXPECT_THAT(key.hmac_key().params().hash(), |
| Eq(key_format.hmac_key_format().params().hash())); |
| EXPECT_THAT(key.hmac_key().params().tag_size(), |
| Eq(key_format.hmac_key_format().params().tag_size())); |
| EXPECT_THAT(key.hmac_key().key_value(), |
| SizeIs(key_format.hmac_key_format().key_size())); |
| } |
| |
| TEST(AesCtrHmacAeadKeyManagerTest, CreateAead) { |
| AesCtrHmacAeadKey key = CreateValidKey(); |
| |
| StatusOr<std::unique_ptr<Aead>> aead_or = |
| AesCtrHmacAeadKeyManager().GetPrimitive<Aead>(key); |
| ASSERT_THAT(aead_or.status(), IsOk()); |
| |
| auto direct_aes_ctr_or = subtle::AesCtrBoringSsl::New( |
| key.aes_ctr_key().key_value(), key.aes_ctr_key().params().iv_size()); |
| ASSERT_THAT(direct_aes_ctr_or.status(), IsOk()); |
| |
| auto direct_hmac_or = subtle::HmacBoringSsl::New( |
| util::Enums::ProtoToSubtle(key.hmac_key().params().hash()), |
| key.hmac_key().params().tag_size(), key.hmac_key().key_value()); |
| ASSERT_THAT(direct_hmac_or.status(), IsOk()); |
| |
| auto direct_aead_or = subtle::EncryptThenAuthenticate::New( |
| std::move(direct_aes_ctr_or.ValueOrDie()), |
| std::move(direct_hmac_or.ValueOrDie()), |
| key.hmac_key().params().tag_size()); |
| ASSERT_THAT(direct_aead_or.status(), IsOk()); |
| |
| EXPECT_THAT(EncryptThenDecrypt(aead_or.ValueOrDie().get(), |
| direct_aead_or.ValueOrDie().get(), |
| "message", "aad"), |
| IsOk()); |
| } |
| |
| } // namespace |
| } // namespace tink |
| } // namespace crypto |