Lines Matching refs:FakeSSLCertificate
22 FakeSSLCertificate::FakeSSLCertificate(const std::string& pem_string) in FakeSSLCertificate() function in rtc::FakeSSLCertificate
27 FakeSSLCertificate::FakeSSLCertificate(const FakeSSLCertificate&) = default;
29 FakeSSLCertificate::~FakeSSLCertificate() = default;
31 std::unique_ptr<SSLCertificate> FakeSSLCertificate::Clone() const { in Clone()
32 return std::make_unique<FakeSSLCertificate>(*this); in Clone()
35 std::string FakeSSLCertificate::ToPEMString() const { in ToPEMString()
39 void FakeSSLCertificate::ToDER(Buffer* der_buffer) const { in ToDER()
46 int64_t FakeSSLCertificate::CertificateExpirationTime() const { in CertificateExpirationTime()
50 void FakeSSLCertificate::SetCertificateExpirationTime(int64_t expiration_time) { in SetCertificateExpirationTime()
54 void FakeSSLCertificate::set_digest_algorithm(const std::string& algorithm) { in set_digest_algorithm()
58 bool FakeSSLCertificate::GetSignatureDigestAlgorithm( in GetSignatureDigestAlgorithm()
64 bool FakeSSLCertificate::ComputeDigest(const std::string& algorithm, in ComputeDigest()
74 : FakeSSLIdentity(FakeSSLCertificate(pem_string)) {} in FakeSSLIdentity()
80 certs.push_back(std::make_unique<FakeSSLCertificate>(pem_string)); in FakeSSLIdentity()
85 FakeSSLIdentity::FakeSSLIdentity(const FakeSSLCertificate& cert) in FakeSSLIdentity()