Searched refs:OpenSSLIdentity (Results 1 – 7 of 7) sorted by relevance
36 OpenSSLIdentity::OpenSSLIdentity( in OpenSSLIdentity() function in rtc::OpenSSLIdentity47 OpenSSLIdentity::OpenSSLIdentity(std::unique_ptr<OpenSSLKeyPair> key_pair, in OpenSSLIdentity() function in rtc::OpenSSLIdentity54 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 …]
29 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 …]
226 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 ==()
225 std::unique_ptr<OpenSSLIdentity> identity_;
160 std::unique_ptr<OpenSSLIdentity> identity_;
266 absl::WrapUnique(static_cast<OpenSSLIdentity*>(identity.release())); in SetIdentity()
324 identity_.reset(static_cast<OpenSSLIdentity*>(identity.release())); in SetIdentity()