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/memory/scoped_ptr.h" | 5 #include "base/memory/scoped_ptr.h" |
6 #include "crypto/ec_private_key.h" | 6 #include "crypto/ec_private_key.h" |
7 #include "net/cert/x509_util.h" | 7 #include "net/cert/x509_util.h" |
8 #include "net/cert/x509_util_openssl.h" | 8 #include "net/cert/x509_util_openssl.h" |
9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
10 | 10 |
(...skipping 28 matching lines...) Expand all Loading... |
39 // and should return false. This unit test ensures that a stub implementation | 39 // and should return false. This unit test ensures that a stub implementation |
40 // is present. | 40 // is present. |
41 TEST(X509UtilOpenSSLTest, CreateDomainBoundCertNotImplemented) { | 41 TEST(X509UtilOpenSSLTest, CreateDomainBoundCertNotImplemented) { |
42 std::string domain = "weborigin.com"; | 42 std::string domain = "weborigin.com"; |
43 base::Time now = base::Time::Now(); | 43 base::Time now = base::Time::Now(); |
44 scoped_ptr<crypto::ECPrivateKey> private_key( | 44 scoped_ptr<crypto::ECPrivateKey> private_key( |
45 crypto::ECPrivateKey::Create()); | 45 crypto::ECPrivateKey::Create()); |
46 std::string der_cert; | 46 std::string der_cert; |
47 EXPECT_FALSE(x509_util::CreateDomainBoundCertEC( | 47 EXPECT_FALSE(x509_util::CreateDomainBoundCertEC( |
48 private_key.get(), | 48 private_key.get(), |
| 49 x509_util::DIGEST_SHA1, |
49 domain, 1, | 50 domain, 1, |
50 now, | 51 now, |
51 now + base::TimeDelta::FromDays(1), | 52 now + base::TimeDelta::FromDays(1), |
52 &der_cert)); | 53 &der_cert)); |
53 EXPECT_TRUE(der_cert.empty()); | 54 EXPECT_TRUE(der_cert.empty()); |
54 | 55 |
55 } | 56 } |
56 | 57 |
57 } // namespace net | 58 } // namespace net |
OLD | NEW |