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 "base/base64.h" | 5 #include "base/base64.h" |
6 #include "base/sha1.h" | 6 #include "base/sha1.h" |
7 #include "base/string_piece.h" | 7 #include "base/string_piece.h" |
8 #include "crypto/sha2.h" | 8 #include "crypto/sha2.h" |
9 #include "net/base/net_log.h" | 9 #include "net/base/net_log.h" |
10 #include "net/base/test_completion_callback.h" | 10 #include "net/base/test_completion_callback.h" |
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 TestBogusPinsHeaders(HASH_VALUE_SHA256); | 415 TestBogusPinsHeaders(HASH_VALUE_SHA256); |
416 } | 416 } |
417 | 417 |
418 TEST_F(HttpSecurityHeadersTest, ValidPinsHeadersSHA1) { | 418 TEST_F(HttpSecurityHeadersTest, ValidPinsHeadersSHA1) { |
419 TestValidPinsHeaders(HASH_VALUE_SHA1); | 419 TestValidPinsHeaders(HASH_VALUE_SHA1); |
420 } | 420 } |
421 | 421 |
422 TEST_F(HttpSecurityHeadersTest, ValidPinsHeadersSHA256) { | 422 TEST_F(HttpSecurityHeadersTest, ValidPinsHeadersSHA256) { |
423 TestValidPinsHeaders(HASH_VALUE_SHA256); | 423 TestValidPinsHeaders(HASH_VALUE_SHA256); |
424 } | 424 } |
425 }; | |
426 | 425 |
| 426 }; // namespace net |
OLD | NEW |