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

/external/webrtc/webrtc/base/
H A Dsslidentity.cc141 SSLCertChain::SSLCertChain(const std::vector<SSLCertificate*>& certs) { function in class:rtc::SSLCertChain
147 SSLCertChain::SSLCertChain(const SSLCertificate* cert) { function in class:rtc::SSLCertChain
151 SSLCertChain::~SSLCertChain() {
H A Dsslidentity.h27 class SSLCertChain;
55 virtual bool GetChain(SSLCertChain** chain) const = 0;
78 // SSLCertChain is a simple wrapper for a vector of SSLCertificates. It serves
81 class SSLCertChain { class in namespace:rtc
85 explicit SSLCertChain(const std::vector<SSLCertificate*>& certs);
86 explicit SSLCertChain(const SSLCertificate* cert);
87 ~SSLCertChain();
95 // Returns a new SSLCertChain object instance wrapping the same underlying
97 SSLCertChain* Copy() const {
98 return new SSLCertChain(certs
[all...]

Completed in 66 milliseconds