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

Unified Diff: net/cert/cert_verify_proc_nss.cc

Issue 18121007: *WIP* Store NSS slots per profile. Move keygen to chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanups, add test for chrome keygen class Created 7 years, 3 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
Index: net/cert/cert_verify_proc_nss.cc
diff --git a/net/cert/cert_verify_proc_nss.cc b/net/cert/cert_verify_proc_nss.cc
index 0a0743c150d7a5487a6758d423093bf1f21008c2..117ea629b69bbf7da117a38d2cc9b402c9539a4b 100644
--- a/net/cert/cert_verify_proc_nss.cc
+++ b/net/cert/cert_verify_proc_nss.cc
@@ -451,6 +451,7 @@ SECStatus PKIXVerifyCert(CERTCertificate* cert_handle,
in_param.type = cert_pi_end;
cvin.push_back(in_param);
+ // XXX can't specify slots here
Ryan Sleevi 2013/10/09 19:18:00 Why would you need to? What's the thought?
mattm 2013/10/09 23:52:38 Mentioned in an earlier reply, but was just thinki
SECStatus rv = CERT_PKIXVerifyCert(cert_handle, certificateUsageSSLServer,
&cvin[0], cvout, NULL);
if (rv != SECSuccess) {

Powered by Google App Engine
This is Rietveld 408576698