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

  /external/chromium/third_party/libjingle/source/talk/base/
opensslidentity.h 44 // OpenSSLKeyPair encapsulates an OpenSSL EVP_PKEY* keypair object,
46 class OpenSSLKeyPair {
48 static OpenSSLKeyPair* Generate();
50 virtual ~OpenSSLKeyPair();
52 virtual OpenSSLKeyPair* GetReference() {
54 return new OpenSSLKeyPair(pkey_);
60 explicit OpenSSLKeyPair(EVP_PKEY* pkey) : pkey_(pkey) {
67 DISALLOW_EVIL_CONSTRUCTORS(OpenSSLKeyPair);
74 static OpenSSLCertificate* Generate(OpenSSLKeyPair* key_pair,
122 OpenSSLIdentity(OpenSSLKeyPair* key_pair
    [all...]
opensslidentity.cc 156 OpenSSLKeyPair* OpenSSLKeyPair::Generate() {
162 return new OpenSSLKeyPair(pkey);
165 OpenSSLKeyPair::~OpenSSLKeyPair() {
169 void OpenSSLKeyPair::AddReference() {
191 OpenSSLKeyPair* key_pair, const std::string& common_name) {
252 OpenSSLKeyPair *key_pair = OpenSSLKeyPair::Generate();

Completed in 2906 milliseconds