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

Unified Diff: net/base/x509_util_nss_unittest.cc

Issue 8537025: Allow signing EC certs and creating EC origin-bound certs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add http://crbug.com/101231 reference Created 9 years, 1 month 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/base/x509_util_nss.cc ('k') | net/base/x509_util_openssl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/x509_util_nss_unittest.cc
diff --git a/net/base/x509_util_nss_unittest.cc b/net/base/x509_util_nss_unittest.cc
index 79146b67ba87ad4aa8f4869a8757b1ee03f59f6c..4ecfaa123f6a2c8d7bc5e44aeb71cf35bc112a96 100644
--- a/net/base/x509_util_nss_unittest.cc
+++ b/net/base/x509_util_nss_unittest.cc
@@ -10,10 +10,19 @@
#include "base/memory/scoped_ptr.h"
#include "base/memory/ref_counted.h"
+#include "crypto/ec_private_key.h"
#include "crypto/rsa_private_key.h"
+#include "crypto/scoped_nss_types.h"
+#include "crypto/signature_verifier.h"
#include "net/base/x509_certificate.h"
#include "testing/gtest/include/gtest/gtest.h"
+#if defined(OS_MACOSX)
+#include "base/mac/mac_util.h"
+#endif
+
+namespace net {
+
namespace {
CERTCertificate* CreateNSSCertHandleFromBytes(const char* data, size_t length) {
@@ -27,19 +36,64 @@ CERTCertificate* CreateNSSCertHandleFromBytes(const char* data, size_t length) {
PR_FALSE, PR_TRUE);
}
-} // namespace
+void VerifyCertificateSignature(const std::string& der_cert,
+ const std::vector<uint8>& der_spki) {
+ crypto::ScopedPLArenaPool arena(PORT_NewArena(DER_DEFAULT_CHUNKSIZE));
-namespace net {
+ CERTSignedData sd;
+ memset(&sd, 0, sizeof(sd));
-// This test creates an origin-bound cert from a private key and
-// then verifies the content of the certificate.
-TEST(X509UtilNSSTest, CreateOriginBoundCert) {
+ SECItem der_cert_item = {
+ siDERCertBuffer,
+ reinterpret_cast<unsigned char*>(const_cast<char*>(der_cert.data())),
+ der_cert.size()
+ };
+ SECStatus rv = SEC_ASN1DecodeItem(arena.get(), &sd,
+ SEC_ASN1_GET(CERT_SignedDataTemplate),
+ &der_cert_item);
+ ASSERT_EQ(SECSuccess, rv);
+
+ // The CERTSignedData.signatureAlgorithm is decoded, but SignatureVerifier
+ // wants the DER encoded form, so re-encode it again.
+ SECItem* signature_algorithm = SEC_ASN1EncodeItem(
+ arena.get(),
+ NULL,
+ &sd.signatureAlgorithm,
+ SEC_ASN1_GET(SECOID_AlgorithmIDTemplate));
+ ASSERT_TRUE(signature_algorithm);
+
+ crypto::SignatureVerifier verifier;
+ bool ok = verifier.VerifyInit(
+ signature_algorithm->data,
+ signature_algorithm->len,
+ sd.signature.data,
+ sd.signature.len / 8, // Signature is a BIT STRING, convert to bytes.
+ &der_spki[0],
+ der_spki.size());
+
+ ASSERT_TRUE(ok);
+ verifier.VerifyUpdate(sd.data.data,
+ sd.data.len);
+
+ ok = verifier.VerifyFinal();
+ EXPECT_TRUE(ok);
+}
+
+void VerifyX509CertificateParsing(const std::string& der_cert) {
+ scoped_refptr<X509Certificate> cert = X509Certificate::CreateFromBytes(
+ der_cert.data(), der_cert.size());
+
+ ASSERT_TRUE(cert);
+
+ EXPECT_EQ("anonymous.invalid", cert->subject().GetDisplayName());
wtc 2011/11/30 20:30:02 This expected certificate subject name is specific
+ EXPECT_FALSE(cert->HasExpired());
+}
+
+void VerifyOriginBoundCert(const std::string& origin,
+ const std::string& der_cert) {
// Origin Bound Cert OID.
static const char oid_string[] = "1.3.6.1.4.1.11129.2.1.6";
- // Create a sample ASCII weborigin.
- std::string origin = "http://weborigin.com:443";
-
// Create object neccessary for extension lookup call.
SECItem extension_object = {
siAsciiString,
@@ -47,20 +101,6 @@ TEST(X509UtilNSSTest, CreateOriginBoundCert) {
origin.size()
};
- scoped_ptr<crypto::RSAPrivateKey> private_key(
- crypto::RSAPrivateKey::Create(1024));
- std::string der_cert;
- ASSERT_TRUE(x509_util::CreateOriginBoundCert(private_key.get(),
- origin, 1,
- base::TimeDelta::FromDays(1),
- &der_cert));
-
- scoped_refptr<X509Certificate> cert = X509Certificate::CreateFromBytes(
- der_cert.data(), der_cert.size());
-
- EXPECT_EQ("anonymous.invalid", cert->subject().GetDisplayName());
- EXPECT_FALSE(cert->HasExpired());
-
// IA5Encode and arena allocate SECItem.
PLArenaPool* arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE);
SECItem* expected = SEC_ASN1EncodeItem(arena,
@@ -103,4 +143,64 @@ TEST(X509UtilNSSTest, CreateOriginBoundCert) {
PORT_FreeArena(arena, PR_FALSE);
}
+} // namespace
+
+// This test creates an origin-bound cert from a RSA private key and
+// then verifies the content of the certificate.
+TEST(X509UtilNSSTest, CreateOriginBoundCertRSA) {
+ // Create a sample ASCII weborigin.
+ std::string origin = "http://weborigin.com:443";
+
+ scoped_ptr<crypto::RSAPrivateKey> private_key(
+ crypto::RSAPrivateKey::Create(1024));
+ std::string der_cert;
+ ASSERT_TRUE(x509_util::CreateOriginBoundCertRSA(private_key.get(),
+ origin, 1,
+ base::TimeDelta::FromDays(1),
+ &der_cert));
+
+ VerifyOriginBoundCert(origin, der_cert);
+
+ VerifyX509CertificateParsing(der_cert);
+
+ std::vector<uint8> spki;
+ ASSERT_TRUE(private_key->ExportPublicKey(&spki));
+ VerifyCertificateSignature(der_cert, spki);
+}
+
+// This test creates an origin-bound cert from an EC private key and
+// then verifies the content of the certificate.
+TEST(X509UtilNSSTest, CreateOriginBoundCertEC) {
+ // Create a sample ASCII weborigin.
+ std::string origin = "http://weborigin.com:443";
+
+ scoped_ptr<crypto::ECPrivateKey> private_key(
+ crypto::ECPrivateKey::Create());
+ std::string der_cert;
+ ASSERT_TRUE(x509_util::CreateOriginBoundCertEC(private_key.get(),
+ origin, 1,
+ base::TimeDelta::FromDays(1),
+ &der_cert));
+
+ VerifyOriginBoundCert(origin, der_cert);
+
+#if defined(OS_MACOSX)
+ // X509Certificate on OSX 10.5 will fail with EC certs. We don't actually
+ // need to parse them into an X509Certificate except for here in the unittest,
+ // so skipping this part of the test should be fine.
+ // TODO(mattm): Try removing this check when http://crbug.com/101231 is fixed.
wtc 2011/11/30 20:30:02 and also merging VerifyX509CertificateParsing back
+ if (base::mac::IsOSSnowLeopardOrLater())
+ VerifyX509CertificateParsing(der_cert);
+#else
+ VerifyX509CertificateParsing(der_cert);
+#endif
+
+#if !defined(OS_WIN) && !defined(OS_MACOSX)
+ // signature_verifier_win and signature_verifier_mac can't handle EC certs.
+ std::vector<uint8> spki;
+ ASSERT_TRUE(private_key->ExportPublicKey(&spki));
+ VerifyCertificateSignature(der_cert, spki);
+#endif
+}
+
} // namespace net
« no previous file with comments | « net/base/x509_util_nss.cc ('k') | net/base/x509_util_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698