HomeSort by relevance Sort by last modified time
    Searched full:trust_bits (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/net/cert/
nss_cert_database.cc 165 TrustBits trust_bits,
168 bool success = psm::ImportCACerts(certificates, root, trust_bits,
177 TrustBits trust_bits,
179 return psm::ImportServerCert(certificates, trust_bits, not_imported);
199 TrustBits trust_bits = TRUST_DEFAULT; local
201 trust_bits |= DISTRUSTED_SSL;
203 trust_bits |= TRUSTED_SSL;
206 trust_bits |= DISTRUSTED_EMAIL;
208 trust_bits |= TRUSTED_EMAIL;
211 trust_bits |= DISTRUSTED_OBJ_SIGN
    [all...]
nss_cert_database.h 136 // according to |trust_bits|. Any certificates that could not be imported
142 TrustBits trust_bits,
150 // |trust_bits| can be set to explicitly trust or distrust the certificate, or
156 TrustBits trust_bits,
171 TrustBits trust_bits);
  /external/chromium_org/chrome/browser/
certificate_manager_model.h 68 // according to |trust_bits|. Any certificates that could not be imported
70 // |trust_bits| should be a bit field of TRUST* values from NSSCertDatabase.
75 net::NSSCertDatabase::TrustBits trust_bits,
83 // |trust_bits| can be set to explicitly trust or distrust the certificate, or
90 net::NSSCertDatabase::TrustBits trust_bits,
94 // |trust_bits| should be a bit field of TRUST* values from NSSCertDatabase.
98 net::NSSCertDatabase::TrustBits trust_bits);
certificate_manager_model.cc 124 net::NSSCertDatabase::TrustBits trust_bits,
126 bool result = cert_db_->ImportCACerts(certificates, trust_bits, not_imported);
134 net::NSSCertDatabase::TrustBits trust_bits,
136 bool result = cert_db_->ImportServerCert(certificates, trust_bits,
146 net::NSSCertDatabase::TrustBits trust_bits) {
147 return cert_db_->SetCertTrust(cert, type, trust_bits);
  /external/chromium/net/base/
cert_database_openssl.cc 93 unsigned int trust_bits) {
cert_database.h 135 // according to |trust_bits|. Any certificates that could not be imported
141 unsigned int trust_bits,
162 unsigned int trust_bits);
cert_database_nss.cc 200 unsigned int trust_bits,
203 bool success = psm::ImportCACerts(certificates, root, trust_bits,
  /external/chromium_org/chrome/browser/ui/webui/options/
certificate_manager_handler.cc 567 net::NSSCertDatabase::TrustBits trust_bits = local
570 static_cast<bool>(trust_bits & net::NSSCertDatabase::TRUSTED_SSL));
572 static_cast<bool>(trust_bits & net::NSSCertDatabase::TRUSTED_EMAIL));
574 static_cast<bool>(trust_bits & net::NSSCertDatabase::TRUSTED_OBJ_SIGN));
    [all...]

Completed in 411 milliseconds