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 "net/quic/crypto/null_decrypter.h" | 5 #include "net/quic/crypto/null_decrypter.h" |
6 #include "net/quic/test_tools/quic_test_utils.h" | 6 #include "net/quic/test_tools/quic_test_utils.h" |
7 | 7 |
8 using base::StringPiece; | 8 using base::StringPiece; |
9 | 9 |
10 namespace net { | 10 namespace net { |
11 | 11 |
12 namespace test { | 12 namespace test { |
13 | 13 |
14 TEST(NullDecrypterTest, Decrypt) { | 14 TEST(NullDecrypterTest, Decrypt) { |
15 unsigned char expected[] = { | 15 unsigned char expected[] = { |
16 // fnv hash | 16 // fnv hash |
17 0x07, 0x2d, 0x42, 0xf0, | |
18 0xbe, 0x69, 0x12, 0x3d, | |
19 0x20, 0x80, 0x5f, 0x9a, | |
20 0x84, 0x9d, 0xd6, 0x0a, | |
21 /* TODO(rch): replace this when uint128 multiplication is implemented. | |
22 0x47, 0x11, 0xea, 0x5f, | 17 0x47, 0x11, 0xea, 0x5f, |
23 0xcf, 0x1d, 0x66, 0x5b, | 18 0xcf, 0x1d, 0x66, 0x5b, |
24 0xba, 0xf0, 0xbc, 0xfd, | 19 0xba, 0xf0, 0xbc, 0xfd, |
25 0x88, 0x79, 0xca, 0x37, | 20 0x88, 0x79, 0xca, 0x37, |
26 */ | |
27 // payload | 21 // payload |
28 'g', 'o', 'o', 'd', | 22 'g', 'o', 'o', 'd', |
29 'b', 'y', 'e', '!', | 23 'b', 'y', 'e', '!', |
30 }; | 24 }; |
31 NullDecrypter decrypter; | 25 NullDecrypter decrypter; |
32 scoped_ptr<QuicData> decrypted( | 26 scoped_ptr<QuicData> decrypted( |
33 decrypter.Decrypt("hello world!", | 27 decrypter.Decrypt("hello world!", |
34 StringPiece(reinterpret_cast<const char*>(expected), | 28 StringPiece(reinterpret_cast<const char*>(expected), |
35 arraysize(expected)))); | 29 arraysize(expected)))); |
36 ASSERT_TRUE(decrypted.get()); | 30 ASSERT_TRUE(decrypted.get()); |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 scoped_ptr<QuicData> decrypted( | 62 scoped_ptr<QuicData> decrypted( |
69 decrypter.Decrypt("hello world!", | 63 decrypter.Decrypt("hello world!", |
70 StringPiece(reinterpret_cast<const char*>(expected), | 64 StringPiece(reinterpret_cast<const char*>(expected), |
71 arraysize(expected)))); | 65 arraysize(expected)))); |
72 ASSERT_FALSE(decrypted.get()); | 66 ASSERT_FALSE(decrypted.get()); |
73 } | 67 } |
74 | 68 |
75 } // namespace test | 69 } // namespace test |
76 | 70 |
77 } // namespace net | 71 } // namespace net |
OLD | NEW |