Home
last modified time | relevance | path

Searched refs:OpenSSLIdentity (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/rtc_base/
Dopenssl_identity.cc36 OpenSSLIdentity::OpenSSLIdentity( in OpenSSLIdentity() function in rtc::OpenSSLIdentity
47 OpenSSLIdentity::OpenSSLIdentity(std::unique_ptr<OpenSSLKeyPair> key_pair, in OpenSSLIdentity() function in rtc::OpenSSLIdentity
54 OpenSSLIdentity::~OpenSSLIdentity() = default;
56 std::unique_ptr<OpenSSLIdentity> OpenSSLIdentity::CreateInternal( in CreateInternal()
64 new OpenSSLIdentity(std::move(key_pair), std::move(certificate))); in CreateInternal()
72 std::unique_ptr<OpenSSLIdentity> OpenSSLIdentity::CreateWithExpiration( in CreateWithExpiration()
87 std::unique_ptr<OpenSSLIdentity> OpenSSLIdentity::CreateForTest( in CreateForTest()
92 std::unique_ptr<SSLIdentity> OpenSSLIdentity::CreateFromPEMStrings( in CreateFromPEMStrings()
109 new OpenSSLIdentity(std::move(key_pair), std::move(cert))); in CreateFromPEMStrings()
112 std::unique_ptr<SSLIdentity> OpenSSLIdentity::CreateFromPEMChainStrings( in CreateFromPEMChainStrings()
[all …]
Dopenssl_identity.h29 class OpenSSLIdentity final : public SSLIdentity {
31 static std::unique_ptr<OpenSSLIdentity> CreateWithExpiration(
35 static std::unique_ptr<OpenSSLIdentity> CreateForTest(
43 ~OpenSSLIdentity() override;
45 OpenSSLIdentity(const OpenSSLIdentity&) = delete;
46 OpenSSLIdentity& operator=(const OpenSSLIdentity&) = delete;
56 bool operator==(const OpenSSLIdentity& other) const;
57 bool operator!=(const OpenSSLIdentity& other) const;
60 OpenSSLIdentity(std::unique_ptr<OpenSSLKeyPair> key_pair,
62 OpenSSLIdentity(std::unique_ptr<OpenSSLKeyPair> key_pair,
[all …]
Dssl_identity.cc226 return OpenSSLIdentity::CreateWithExpiration(common_name, key_param, in Create()
250 return OpenSSLIdentity::CreateForTest(params); in CreateForTest()
262 return OpenSSLIdentity::CreateFromPEMStrings(private_key, certificate); in CreateFromPEMStrings()
275 return OpenSSLIdentity::CreateFromPEMChainStrings(private_key, in CreateFromPEMChainStrings()
285 return static_cast<const OpenSSLIdentity&>(a) == in operator ==()
286 static_cast<const OpenSSLIdentity&>(b); in operator ==()
Dopenssl_stream_adapter.h225 std::unique_ptr<OpenSSLIdentity> identity_;
Dopenssl_adapter.h160 std::unique_ptr<OpenSSLIdentity> identity_;
Dopenssl_adapter.cc266 absl::WrapUnique(static_cast<OpenSSLIdentity*>(identity.release())); in SetIdentity()
Dopenssl_stream_adapter.cc324 identity_.reset(static_cast<OpenSSLIdentity*>(identity.release())); in SetIdentity()