| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chromeos/login/owner_key_utils.h" | 5 #include "chrome/browser/chromeos/login/owner_key_utils.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/crypto/rsa_private_key.h" | |
| 11 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| 12 #include "base/file_util.h" | 11 #include "base/file_util.h" |
| 13 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_temp_dir.h" | 13 #include "base/memory/scoped_temp_dir.h" |
| 15 #include "base/nss_util.h" | 14 #include "crypto/nss_util.h" |
| 16 #include "base/nss_util_internal.h" | 15 #include "crypto/nss_util_internal.h" |
| 16 #include "crypto/rsa_private_key.h" |
| 17 #include "testing/gmock/include/gmock/gmock.h" | 17 #include "testing/gmock/include/gmock/gmock.h" |
| 18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
| 19 | 19 |
| 20 namespace chromeos { | 20 namespace chromeos { |
| 21 | 21 |
| 22 class OwnerKeyUtilsTest : public ::testing::Test { | 22 class OwnerKeyUtilsTest : public ::testing::Test { |
| 23 public: | 23 public: |
| 24 OwnerKeyUtilsTest() : utils_(OwnerKeyUtils::Create()) {} | 24 OwnerKeyUtilsTest() : utils_(OwnerKeyUtils::Create()) {} |
| 25 virtual ~OwnerKeyUtilsTest() {} | 25 virtual ~OwnerKeyUtilsTest() {} |
| 26 | 26 |
| 27 virtual void SetUp() { | 27 virtual void SetUp() { |
| 28 base::OpenPersistentNSSDB(); | 28 crypto::OpenPersistentNSSDB(); |
| 29 } | 29 } |
| 30 | 30 |
| 31 // Key generation parameters. | 31 // Key generation parameters. |
| 32 static const uint16 kKeySizeInBits; | 32 static const uint16 kKeySizeInBits; |
| 33 | 33 |
| 34 scoped_refptr<OwnerKeyUtils> utils_; | 34 scoped_refptr<OwnerKeyUtils> utils_; |
| 35 }; | 35 }; |
| 36 | 36 |
| 37 // We're generating and using 2048-bit RSA keys. | 37 // We're generating and using 2048-bit RSA keys. |
| 38 // static | 38 // static |
| 39 const uint16 OwnerKeyUtilsTest::kKeySizeInBits = 2048; | 39 const uint16 OwnerKeyUtilsTest::kKeySizeInBits = 2048; |
| 40 | 40 |
| 41 TEST_F(OwnerKeyUtilsTest, ExportImportPublicKey) { | 41 TEST_F(OwnerKeyUtilsTest, ExportImportPublicKey) { |
| 42 scoped_ptr<base::RSAPrivateKey> pair( | 42 scoped_ptr<crypto::RSAPrivateKey> pair( |
| 43 base::RSAPrivateKey::CreateSensitive(kKeySizeInBits)); | 43 crypto::RSAPrivateKey::CreateSensitive(kKeySizeInBits)); |
| 44 ASSERT_NE(pair.get(), reinterpret_cast<base::RSAPrivateKey*>(NULL)); | 44 ASSERT_NE(pair.get(), reinterpret_cast<crypto::RSAPrivateKey*>(NULL)); |
| 45 | 45 |
| 46 // Export public key to file. | 46 // Export public key to file. |
| 47 ScopedTempDir tmpdir; | 47 ScopedTempDir tmpdir; |
| 48 FilePath tmpfile; | 48 FilePath tmpfile; |
| 49 ASSERT_TRUE(tmpdir.CreateUniqueTempDir()); | 49 ASSERT_TRUE(tmpdir.CreateUniqueTempDir()); |
| 50 ASSERT_TRUE(file_util::CreateTemporaryFileInDir(tmpdir.path(), &tmpfile)); | 50 ASSERT_TRUE(file_util::CreateTemporaryFileInDir(tmpdir.path(), &tmpfile)); |
| 51 ASSERT_TRUE(utils_->ExportPublicKeyToFile(pair.get(), tmpfile)); | 51 ASSERT_TRUE(utils_->ExportPublicKeyToFile(pair.get(), tmpfile)); |
| 52 | 52 |
| 53 // Export public key, so that we can compare it to the one we get off disk. | 53 // Export public key, so that we can compare it to the one we get off disk. |
| 54 std::vector<uint8> public_key; | 54 std::vector<uint8> public_key; |
| 55 ASSERT_TRUE(pair->ExportPublicKey(&public_key)); | 55 ASSERT_TRUE(pair->ExportPublicKey(&public_key)); |
| 56 std::vector<uint8> from_disk; | 56 std::vector<uint8> from_disk; |
| 57 ASSERT_TRUE(utils_->ImportPublicKey(tmpfile, &from_disk)); | 57 ASSERT_TRUE(utils_->ImportPublicKey(tmpfile, &from_disk)); |
| 58 | 58 |
| 59 std::vector<uint8>::iterator pubkey_it; | 59 std::vector<uint8>::iterator pubkey_it; |
| 60 std::vector<uint8>::iterator disk_it; | 60 std::vector<uint8>::iterator disk_it; |
| 61 for (pubkey_it = public_key.begin(), disk_it = from_disk.begin(); | 61 for (pubkey_it = public_key.begin(), disk_it = from_disk.begin(); |
| 62 pubkey_it < public_key.end(); | 62 pubkey_it < public_key.end(); |
| 63 pubkey_it++, disk_it++) { | 63 pubkey_it++, disk_it++) { |
| 64 EXPECT_EQ(*pubkey_it, *disk_it); | 64 EXPECT_EQ(*pubkey_it, *disk_it); |
| 65 } | 65 } |
| 66 } | 66 } |
| 67 | 67 |
| 68 } // namespace chromeos | 68 } // namespace chromeos |
| OLD | NEW |