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

  /external/chromium_org/third_party/webrtc/base/
opensslidentity.h 59 explicit OpenSSLCertificate(X509* x509) : x509_(x509) {
70 return new OpenSSLCertificate(x509_);
73 X509* x509() const { return x509_; }
104 X509* x509_; member in class:rtc::OpenSSLCertificate
opensslidentity.cc 218 EVP_get_digestbyobj(x509_->sig_alg->algorithm), algorithm);
225 return ComputeDigest(x509_, algorithm, digest, size, length);
250 X509_free(x509_);
258 if (!PEM_write_bio_X509(bio, x509_)) {
279 if (!i2d_X509_bio(bio, x509_)) {
290 ASSERT(x509_ != NULL);
291 CRYPTO_add(&x509_->references, 1, CRYPTO_LOCK_X509);

Completed in 329 milliseconds