HomeSort by relevance Sort by last modified time
    Searched defs:CertPrincipal (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/net/cert/
x509_cert_types.cc 33 CertPrincipal::CertPrincipal() {
36 CertPrincipal::CertPrincipal(const std::string& name) : common_name(name) {}
38 CertPrincipal::~CertPrincipal() {
41 std::string CertPrincipal::GetDisplayName() const {
x509_cert_types.h 34 // CertPrincipal represents the issuer or subject field of an X.509 certificate.
35 struct NET_EXPORT CertPrincipal {
36 CertPrincipal();
37 explicit CertPrincipal(const std::string& name);
38 ~CertPrincipal();
46 // Compare this CertPrincipal with |against|, returning true if they're
50 bool Matches(const CertPrincipal& against) const;

Completed in 33 milliseconds