Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Unified Diff: net/http/des_unittest.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/des.cc ('k') | net/http/disk_based_cert_cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/des_unittest.cc
diff --git a/net/http/des_unittest.cc b/net/http/des_unittest.cc
deleted file mode 100644
index a615a0844950d14996574c901f76b1da31f2225d..0000000000000000000000000000000000000000
--- a/net/http/des_unittest.cc
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include <string.h>
-
-#include "net/http/des.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace net {
-
-// This test vector comes from the NSS FIPS power-up self-test.
-TEST(DESTest, KnownAnswerTest1) {
- // DES known key (56-bits).
- static const uint8 des_known_key[] = "ANSI DES";
-
- // DES known plaintext (64-bits).
- static const uint8 des_ecb_known_plaintext[] = "Netscape";
-
- // DES known ciphertext (64-bits).
- static const uint8 des_ecb_known_ciphertext[] = {
- 0x26, 0x14, 0xe9, 0xc3, 0x28, 0x80, 0x50, 0xb0
- };
-
- uint8 ciphertext[8];
- memset(ciphertext, 0xaf, sizeof(ciphertext));
-
- DESEncrypt(des_known_key, des_ecb_known_plaintext, ciphertext);
- EXPECT_EQ(0, memcmp(ciphertext, des_ecb_known_ciphertext, 8));
-}
-
-// This test vector comes from NIST Special Publication 800-17, Modes of
-// Operation Validation System (MOVS): Requirements and Procedures, Appendix
-// A, page 124.
-TEST(DESTest, KnownAnswerTest2) {
- static const uint8 key[] = {
- 0x10, 0x31, 0x6e, 0x02, 0x8c, 0x8f, 0x3b, 0x4a
- };
- static const uint8 plaintext[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
- static const uint8 known_ciphertext[] = {
- 0x82, 0xdc, 0xba, 0xfb, 0xde, 0xab, 0x66, 0x02
- };
- uint8 ciphertext[8];
- memset(ciphertext, 0xaf, sizeof(ciphertext));
-
- DESEncrypt(key, plaintext, ciphertext);
- EXPECT_EQ(0, memcmp(ciphertext, known_ciphertext, 8));
-}
-
-} // namespace net
« no previous file with comments | « net/http/des.cc ('k') | net/http/disk_based_cert_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698