Home
last modified time | relevance | path

Searched refs:cert_handles (Results 1 – 5 of 5) sorted by relevance

/external/chromium/net/base/
Dx509_certificate_openssl_android.cc27 OSCertHandles cert_handles(intermediate_ca_certs_); in Verify() local
30 if (cert_handles.empty() || cert_handles[0] != cert_handle_) in Verify()
31 cert_handles.insert(cert_handles.begin(), cert_handle_); in Verify()
34 cert_bytes.reserve(cert_handles.size()); in Verify()
35 for (OSCertHandles::const_iterator it = cert_handles.begin(); in Verify()
36 it != cert_handles.end(); ++it) { in Verify()
Dx509_certificate_openssl.cc560 OSCertHandles cert_handles(intermediate_ca_certs_); in GetChainDEREncodedBytes() local
563 if (cert_handles.empty() || cert_handles[0] != cert_handle_) in GetChainDEREncodedBytes()
564 cert_handles.insert(cert_handles.begin(), cert_handle_); in GetChainDEREncodedBytes()
566 chain_bytes->reserve(cert_handles.size()); in GetChainDEREncodedBytes()
567 for (OSCertHandles::const_iterator it = cert_handles.begin(); in GetChainDEREncodedBytes()
568 it != cert_handles.end(); ++it) { in GetChainDEREncodedBytes()
/external/chromium/chrome/common/net/
Dx509_certificate_model_openssl.cc215 net::X509Certificate::OSCertHandles* cert_handles) { in GetCertChainFromCert() argument
217 cert_handles->push_back(net::X509Certificate::DupOSCertHandle(cert_handle)); in GetCertChainFromCert()
220 void DestroyCertChain(net::X509Certificate::OSCertHandles* cert_handles) { in DestroyCertChain() argument
221 for (net::X509Certificate::OSCertHandles::iterator i = cert_handles->begin(); in DestroyCertChain()
222 i != cert_handles->end(); ++i) in DestroyCertChain()
224 cert_handles->clear(); in DestroyCertChain()
Dx509_certificate_model_nss.cc308 X509Certificate::OSCertHandles* cert_handles) { in GetCertChainFromCert() argument
315 cert_handles->push_back(CERT_DupCertificate(node->cert)); in GetCertChainFromCert()
320 void DestroyCertChain(X509Certificate::OSCertHandles* cert_handles) { in DestroyCertChain() argument
321 for (X509Certificate::OSCertHandles::iterator i(cert_handles->begin()); in DestroyCertChain()
322 i != cert_handles->end(); ++i) in DestroyCertChain()
324 cert_handles->clear(); in DestroyCertChain()
Dx509_certificate_model.h110 net::X509Certificate::OSCertHandles* cert_handles);
111 void DestroyCertChain(net::X509Certificate::OSCertHandles* cert_handles);