Home | History | Annotate | Download | only in base

Lines Matching defs:OpenSSLCertificate

207 OpenSSLCertificate* OpenSSLCertificate::Generate(
222 OpenSSLCertificate* ret = new OpenSSLCertificate(x509);
227 OpenSSLCertificate* OpenSSLCertificate::FromPEMString(
239 OpenSSLCertificate* ret = new OpenSSLCertificate(x509);
246 bool OpenSSLCertificate::GetSignatureDigestAlgorithm(
289 bool OpenSSLCertificate::GetChain(SSLCertChain** chain) const {
296 bool OpenSSLCertificate::ComputeDigest(const std::string& algorithm,
303 bool OpenSSLCertificate::ComputeDigest(const X509* x509,
324 OpenSSLCertificate::~OpenSSLCertificate() {
328 OpenSSLCertificate* OpenSSLCertificate::GetReference() const {
329 return new OpenSSLCertificate(x509_);
332 std::string OpenSSLCertificate::ToPEMString() const {
349 void OpenSSLCertificate::ToDER(Buffer* der_buffer) const {
368 void OpenSSLCertificate::AddReference() const {
378 int64_t OpenSSLCertificate::CertificateExpirationTime() const {
394 OpenSSLCertificate* certificate)
406 OpenSSLCertificate* certificate =
407 OpenSSLCertificate::Generate(key_pair, params);
435 scoped_ptr<OpenSSLCertificate> cert(
436 OpenSSLCertificate::FromPEMString(certificate));
438 LOG(LS_ERROR) << "Failed to create OpenSSLCertificate from PEM string.";
461 const OpenSSLCertificate& OpenSSLIdentity::certificate() const {