Searched defs:OpenSSLKeyPair (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/webrtc/base/
H A Dopensslidentity.h27 // OpenSSLKeyPair encapsulates an OpenSSL EVP_PKEY* keypair object,
29 class OpenSSLKeyPair { class in namespace:rtc
31 explicit OpenSSLKeyPair(EVP_PKEY* pkey) : pkey_(pkey) { function in class:rtc::OpenSSLKeyPair
35 static OpenSSLKeyPair* Generate(const KeyParams& key_params);
37 virtual ~OpenSSLKeyPair();
39 virtual OpenSSLKeyPair* GetReference();
48 RTC_DISALLOW_COPY_AND_ASSIGN(OpenSSLKeyPair);
60 static OpenSSLCertificate* Generate(OpenSSLKeyPair* key_pair,
118 OpenSSLIdentity(OpenSSLKeyPair* key_pair, OpenSSLCertificate* certificate);
122 scoped_ptr<OpenSSLKeyPair> key_pair
[all...]
H A Dopensslidentity.cc164 OpenSSLKeyPair* OpenSSLKeyPair::Generate(const KeyParams& key_params) {
170 return new OpenSSLKeyPair(pkey);
173 OpenSSLKeyPair::~OpenSSLKeyPair() {
177 OpenSSLKeyPair* OpenSSLKeyPair::GetReference() {
179 return new OpenSSLKeyPair(pkey_);
182 void OpenSSLKeyPair::AddReference() {
208 OpenSSLKeyPair* key_pai
[all...]

Completed in 90 milliseconds