| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/aes_128_gcm_12_decrypter.h" | 5 #include "net/quic/crypto/aes_128_gcm_12_decrypter.h" |
| 6 | 6 |
| 7 #include <string> |
| 8 |
| 7 #include "net/quic/test_tools/quic_test_utils.h" | 9 #include "net/quic/test_tools/quic_test_utils.h" |
| 8 | 10 |
| 9 using base::StringPiece; | 11 using base::StringPiece; |
| 12 using std::string; |
| 10 | 13 |
| 11 namespace { | 14 namespace { |
| 12 | 15 |
| 13 // The AES GCM test vectors come from the file gcmDecrypt128.rsp | 16 // The AES GCM test vectors come from the file gcmDecrypt128.rsp |
| 14 // downloaded from http://csrc.nist.gov/groups/STM/cavp/index.html on | 17 // downloaded from http://csrc.nist.gov/groups/STM/cavp/index.html on |
| 15 // 2013-02-01. The test vectors in that file look like this: | 18 // 2013-02-01. The test vectors in that file look like this: |
| 16 // | 19 // |
| 17 // [Keylen = 128] | 20 // [Keylen = 128] |
| 18 // [IVlen = 96] | 21 // [IVlen = 96] |
| 19 // [PTlen = 0] | 22 // [PTlen = 0] |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 | 330 |
| 328 ASSERT_EQ(pt.length(), decrypted->length()); | 331 ASSERT_EQ(pt.length(), decrypted->length()); |
| 329 test::CompareCharArraysWithHexError("plaintext", decrypted->data(), | 332 test::CompareCharArraysWithHexError("plaintext", decrypted->data(), |
| 330 pt.length(), pt.data(), pt.length()); | 333 pt.length(), pt.data(), pt.length()); |
| 331 } | 334 } |
| 332 } | 335 } |
| 333 } | 336 } |
| 334 | 337 |
| 335 } // namespace test | 338 } // namespace test |
| 336 } // namespace net | 339 } // namespace net |
| OLD | NEW |