| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 <string.h> | 5 #include <string.h> |
| 6 | 6 |
| 7 #include "net/http/des.h" | 7 #include "net/http/des.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 | 9 |
| 10 namespace net { | 10 namespace net { |
| 11 | 11 |
| 12 // This test vector comes from the NSS FIPS power-up self-test. | 12 // This test vector comes from the NSS FIPS power-up self-test. |
| 13 TEST(DESTest, KnownAnswerTest1) { | 13 TEST(DESTest, KnownAnswerTest1) { |
| 14 // DES known key (56-bits). | 14 // DES known key (56-bits). |
| 15 static const uint8 des_known_key[] = { "ANSI DES" }; | 15 static const uint8 des_known_key[] = "ANSI DES"; |
| 16 | 16 |
| 17 // DES known plaintext (64-bits). | 17 // DES known plaintext (64-bits). |
| 18 static const uint8 des_ecb_known_plaintext[] = { "Netscape" }; | 18 static const uint8 des_ecb_known_plaintext[] = "Netscape"; |
| 19 | 19 |
| 20 // DES known ciphertext (64-bits). | 20 // DES known ciphertext (64-bits). |
| 21 static const uint8 des_ecb_known_ciphertext[] = { | 21 static const uint8 des_ecb_known_ciphertext[] = { |
| 22 0x26, 0x14, 0xe9, 0xc3, 0x28, 0x80, 0x50, 0xb0 | 22 0x26, 0x14, 0xe9, 0xc3, 0x28, 0x80, 0x50, 0xb0 |
| 23 }; | 23 }; |
| 24 | 24 |
| 25 uint8 ciphertext[8]; | 25 uint8 ciphertext[8]; |
| 26 memset(ciphertext, 0xaf, sizeof(ciphertext)); | 26 memset(ciphertext, 0xaf, sizeof(ciphertext)); |
| 27 | 27 |
| 28 DESEncrypt(des_known_key, des_ecb_known_plaintext, ciphertext); | 28 DESEncrypt(des_known_key, des_ecb_known_plaintext, ciphertext); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 41 0x82, 0xdc, 0xba, 0xfb, 0xde, 0xab, 0x66, 0x02 | 41 0x82, 0xdc, 0xba, 0xfb, 0xde, 0xab, 0x66, 0x02 |
| 42 }; | 42 }; |
| 43 uint8 ciphertext[8]; | 43 uint8 ciphertext[8]; |
| 44 memset(ciphertext, 0xaf, sizeof(ciphertext)); | 44 memset(ciphertext, 0xaf, sizeof(ciphertext)); |
| 45 | 45 |
| 46 DESEncrypt(key, plaintext, ciphertext); | 46 DESEncrypt(key, plaintext, ciphertext); |
| 47 EXPECT_EQ(0, memcmp(ciphertext, known_ciphertext, 8)); | 47 EXPECT_EQ(0, memcmp(ciphertext, known_ciphertext, 8)); |
| 48 } | 48 } |
| 49 | 49 |
| 50 } // namespace net | 50 } // namespace net |
| OLD | NEW |