OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "crypto/secure_hash.h" | 5 #include "crypto/secure_hash.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/pickle.h" | |
14 #include "crypto/sha2.h" | 13 #include "crypto/sha2.h" |
15 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
16 | 15 |
17 TEST(SecureHashTest, TestUpdate) { | 16 TEST(SecureHashTest, TestUpdate) { |
18 // Example B.3 from FIPS 180-2: long message. | 17 // Example B.3 from FIPS 180-2: long message. |
19 std::string input3(500000, 'a'); // 'a' repeated half a million times | 18 std::string input3(500000, 'a'); // 'a' repeated half a million times |
20 int expected3[] = { 0xcd, 0xc7, 0x6e, 0x5c, | 19 int expected3[] = { 0xcd, 0xc7, 0x6e, 0x5c, |
21 0x99, 0x14, 0xfb, 0x92, | 20 0x99, 0x14, 0xfb, 0x92, |
22 0x81, 0xa1, 0xc7, 0xe2, | 21 0x81, 0xa1, 0xc7, 0xe2, |
23 0x84, 0xd7, 0x3e, 0x67, | 22 0x84, 0xd7, 0x3e, 0x67, |
24 0xf1, 0x80, 0x9a, 0x48, | 23 0xf1, 0x80, 0x9a, 0x48, |
25 0xa4, 0x97, 0x20, 0x0e, | 24 0xa4, 0x97, 0x20, 0x0e, |
26 0x04, 0x6d, 0x39, 0xcc, | 25 0x04, 0x6d, 0x39, 0xcc, |
27 0xc7, 0x11, 0x2c, 0xd0 }; | 26 0xc7, 0x11, 0x2c, 0xd0 }; |
28 | 27 |
29 uint8_t output3[crypto::kSHA256Length]; | 28 uint8_t output3[crypto::kSHA256Length]; |
30 | 29 |
31 scoped_ptr<crypto::SecureHash> ctx(crypto::SecureHash::Create( | 30 scoped_ptr<crypto::SecureHash> ctx(crypto::SecureHash::Create( |
32 crypto::SecureHash::SHA256)); | 31 crypto::SecureHash::SHA256)); |
33 ctx->Update(input3.data(), input3.size()); | 32 ctx->Update(input3.data(), input3.size()); |
34 ctx->Update(input3.data(), input3.size()); | 33 ctx->Update(input3.data(), input3.size()); |
35 | 34 |
36 ctx->Finish(output3, sizeof(output3)); | 35 ctx->Finish(output3, sizeof(output3)); |
37 for (size_t i = 0; i < crypto::kSHA256Length; i++) | 36 for (size_t i = 0; i < crypto::kSHA256Length; i++) |
38 EXPECT_EQ(expected3[i], static_cast<int>(output3[i])); | 37 EXPECT_EQ(expected3[i], static_cast<int>(output3[i])); |
39 } | 38 } |
40 | 39 |
41 // Save the crypto state mid-stream, and create another instance with the | 40 TEST(SecureHashTest, TestClone) { |
42 // saved state. Then feed the same data afterwards to both. | |
43 // When done, both should have the same hash value. | |
44 TEST(SecureHashTest, TestSerialization) { | |
45 std::string input1(10001, 'a'); // 'a' repeated 10001 times | 41 std::string input1(10001, 'a'); // 'a' repeated 10001 times |
46 std::string input2(10001, 'b'); // 'b' repeated 10001 times | 42 std::string input2(10001, 'd'); // 'd' repeated 10001 times |
47 std::string input3(10001, 'c'); // 'c' repeated 10001 times | 43 |
48 std::string input4(10001, 'd'); // 'd' repeated 10001 times | 44 uint8_t expected_sha256_hash_of_input1[crypto::kSHA256Length] = { |
49 std::string input5(10001, 'e'); // 'e' repeated 10001 times | 45 0x0c, 0xab, 0x99, 0xa0, 0x58, 0x60, 0x0f, 0xfa, 0xad, 0x12, 0x92, |
| 46 0xd0, 0xc5, 0x3c, 0x05, 0x48, 0xeb, 0xaf, 0x88, 0xdd, 0x1d, 0x01, |
| 47 0x03, 0x03, 0x45, 0x70, 0x5f, 0x01, 0x8a, 0x81, 0x39, 0x09 |
| 48 }; |
| 49 uint8_t expected_sha256_hash_of_inputs1and2[crypto::kSHA256Length] = { |
| 50 0x4c, 0x8e, 0x26, 0x5a, 0xc3, 0x85, 0x1f, 0x1f, 0xa5, 0x04, 0x1c, |
| 51 0xc7, 0x88, 0x53, 0x1c, 0xc7, 0x80, 0x47, 0x15, 0xfb, 0x47, 0xff, |
| 52 0x72, 0xb1, 0x28, 0x37, 0xb0, 0x4d, 0x6e, 0x22, 0x2e, 0x4d |
| 53 }; |
50 | 54 |
51 uint8_t output1[crypto::kSHA256Length]; | 55 uint8_t output1[crypto::kSHA256Length]; |
52 uint8_t output2[crypto::kSHA256Length]; | 56 uint8_t output2[crypto::kSHA256Length]; |
| 57 uint8_t output3[crypto::kSHA256Length]; |
53 | 58 |
54 scoped_ptr<crypto::SecureHash> ctx1(crypto::SecureHash::Create( | 59 scoped_ptr<crypto::SecureHash> ctx1(crypto::SecureHash::Create( |
55 crypto::SecureHash::SHA256)); | 60 crypto::SecureHash::SHA256)); |
56 scoped_ptr<crypto::SecureHash> ctx2(crypto::SecureHash::Create( | |
57 crypto::SecureHash::SHA256)); | |
58 base::Pickle pickle; | |
59 ctx1->Update(input1.data(), input1.size()); | 61 ctx1->Update(input1.data(), input1.size()); |
| 62 |
| 63 scoped_ptr<crypto::SecureHash> ctx2(ctx1->Clone()); |
| 64 scoped_ptr<crypto::SecureHash> ctx3(ctx2->Clone()); |
| 65 // At this point, ctx1, ctx2, and ctx3 are all equivalent and represent the |
| 66 // state after hashing input1. |
| 67 |
| 68 // Updating ctx1 and ctx2 with input2 should produce equivalent results. |
60 ctx1->Update(input2.data(), input2.size()); | 69 ctx1->Update(input2.data(), input2.size()); |
61 ctx1->Update(input3.data(), input3.size()); | |
62 | |
63 EXPECT_TRUE(ctx1->Serialize(&pickle)); | |
64 ctx1->Update(input4.data(), input4.size()); | |
65 ctx1->Update(input5.data(), input5.size()); | |
66 | |
67 ctx1->Finish(output1, sizeof(output1)); | 70 ctx1->Finish(output1, sizeof(output1)); |
68 | 71 |
69 base::PickleIterator data_iterator(pickle); | 72 ctx2->Update(input2.data(), input2.size()); |
70 EXPECT_TRUE(ctx2->Deserialize(&data_iterator)); | |
71 ctx2->Update(input4.data(), input4.size()); | |
72 ctx2->Update(input5.data(), input5.size()); | |
73 | |
74 ctx2->Finish(output2, sizeof(output2)); | 73 ctx2->Finish(output2, sizeof(output2)); |
75 | 74 |
76 EXPECT_EQ(0, memcmp(output1, output2, crypto::kSHA256Length)); | 75 EXPECT_EQ(0, memcmp(output1, output2, crypto::kSHA256Length)); |
| 76 EXPECT_EQ(0, memcmp(output1, expected_sha256_hash_of_inputs1and2, |
| 77 crypto::kSHA256Length)); |
| 78 |
| 79 // Finish() ctx3, which should produce the hash of input1. |
| 80 ctx3->Finish(&output3, sizeof(output3)); |
| 81 EXPECT_EQ(0, memcmp(output3, expected_sha256_hash_of_input1, |
| 82 crypto::kSHA256Length)); |
77 } | 83 } |
| 84 |
| 85 TEST(SecureHashTest, TestLength) { |
| 86 scoped_ptr<crypto::SecureHash> ctx( |
| 87 crypto::SecureHash::Create(crypto::SecureHash::SHA256)); |
| 88 EXPECT_EQ(crypto::kSHA256Length, ctx->GetHashLength()); |
| 89 } |
OLD | NEW |