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

Side by Side Diff: net/base/x509_util_openssl_unittest.cc

Issue 8296014: Use NSS to generate Origin-Bound Certs on Win and Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review changes Created 9 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/memory/scoped_ptr.h"
6 #include "crypto/rsa_private_key.h"
7 #include "net/base/x509_util.h"
8 #include "net/base/x509_util_openssl.h"
9 #include "testing/gtest/include/gtest/gtest.h"
10
11 namespace net {
12
13 // For OpenSSL, x509_util::CreateOriginBoundCert() is not yet implemented
14 // and should return false. This unit test ensures that a stub implementation
15 // is present.
16 TEST(X509UtilOpenSSLTest, CreateOriginBoundCertNotImplemented) {
17 std::string origin = "http://weborigin.com:443";
18 scoped_ptr<crypto::RSAPrivateKey> private_key(
19 crypto::RSAPrivateKey::Create(1024));
20 std::string der_cert;
21 EXPECT_FALSE(x509_util::CreateOriginBoundCert(private_key.get(),
22 origin, 1,
23 base::TimeDelta::FromDays(1),
24 &der_cert));
25 EXPECT_TRUE(der_cert.empty());
26
27 }
28
29 } // namespace net
OLDNEW
« net/base/net_error_list.h ('K') | « net/base/x509_util_openssl.cc ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698