| 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" | 10 #include "base/crypto/rsa_private_key.h" |
| 11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
| 12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_temp_dir.h" | 14 #include "base/memory/scoped_temp_dir.h" |
| 15 #include "base/nss_util.h" | 15 #include "base/nss_util.h" |
| 16 #include "base/nss_util_internal.h" | 16 #include "base/nss_util_internal.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 base::OpenPersistentNSSDB(true); |
| 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 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 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 |