Searched defs:X509Certificate (Results 1 - 2 of 2) sorted by relevance

/external/chromium/net/base/
H A Dx509_certificate.cc40 const X509Certificate::Format kFormatDecodePriority[] = {
41 X509Certificate::FORMAT_SINGLE_CERTIFICATE,
42 X509Certificate::FORMAT_PKCS7
50 // A thread-safe cache for X509Certificate objects.
60 void Insert(X509Certificate* cert);
61 scoped_refptr<X509Certificate> Find(const SHA1Fingerprint& fingerprint);
64 typedef std::map<SHA1Fingerprint, scoped_refptr<X509Certificate>, SHA1FingerprintLessThan>
88 void X509CertificateCache::Insert(X509Certificate* cert) {
115 scoped_refptr<X509Certificate> X509CertificateCache::Find(
134 bool X509Certificate
143 X509Certificate::X509Certificate(const std::string& subject, function in class:net::X509Certificate
534 X509Certificate::X509Certificate(OSCertHandle cert_handle, function in class:net::X509Certificate
[all...]
H A Dx509_certificate.h49 typedef std::vector<scoped_refptr<X509Certificate> > CertificateList;
51 // X509Certificate represents an X.509 certificate used by SSL.
52 class NET_EXPORT X509Certificate : public base::RefCountedThreadSafe<X509Certificate> { class in namespace:net
72 // Predicate functor used in maps when X509Certificate is used as the key.
75 bool operator() (X509Certificate* lhs, X509Certificate* rhs) const;
128 // Creates a X509Certificate from the ground up. Used by tests that simulate
130 X509Certificate(const std::string& subject, const std::string& issuer,
133 // Create an X509Certificate fro
[all...]

Completed in 44 milliseconds