mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-29 13:26:33 +01:00

Instead of going through our wrappers in ptr_util.h. This CL was generated by the following script: git grep -l ptr_util | xargs perl -pi -e 's,#include "rtc_base/ptr_util.h",#include "absl/memory/memory.h",' git grep -l MakeUnique | xargs perl -pi -e 's,\b(rtc::)?MakeUnique\b,absl::make_unique,g' git grep -l WrapUnique | xargs perl -pi -e 's,\b(rtc::)?WrapUnique\b,absl::WrapUnique,g' git checkout -- rtc_base/ptr_util{.h,_unittest.cc} git cl format Followed by manually adding dependencies on //third_party/abseil-cpp/absl/memory until `gn check` stopped complaining. Bug: webrtc:9473 Change-Id: I89ccd363f070479b8c431eb2c3d404a46eaacc1c Reviewed-on: https://webrtc-review.googlesource.com/86600 Commit-Queue: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23850}
120 lines
3.5 KiB
C++
120 lines
3.5 KiB
C++
/*
|
|
* Copyright 2017 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "rtc_base/fakesslidentity.h"
|
|
|
|
#include <algorithm>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
#include "absl/memory/memory.h"
|
|
#include "rtc_base/checks.h"
|
|
#include "rtc_base/messagedigest.h"
|
|
|
|
namespace rtc {
|
|
|
|
FakeSSLCertificate::FakeSSLCertificate(const std::string& pem_string)
|
|
: pem_string_(pem_string),
|
|
digest_algorithm_(DIGEST_SHA_1),
|
|
expiration_time_(-1) {}
|
|
|
|
FakeSSLCertificate::FakeSSLCertificate(const FakeSSLCertificate&) = default;
|
|
|
|
FakeSSLCertificate::~FakeSSLCertificate() = default;
|
|
|
|
FakeSSLCertificate* FakeSSLCertificate::GetReference() const {
|
|
return new FakeSSLCertificate(*this);
|
|
}
|
|
|
|
std::string FakeSSLCertificate::ToPEMString() const {
|
|
return pem_string_;
|
|
}
|
|
|
|
void FakeSSLCertificate::ToDER(Buffer* der_buffer) const {
|
|
std::string der_string;
|
|
RTC_CHECK(
|
|
SSLIdentity::PemToDer(kPemTypeCertificate, pem_string_, &der_string));
|
|
der_buffer->SetData(der_string.c_str(), der_string.size());
|
|
}
|
|
|
|
int64_t FakeSSLCertificate::CertificateExpirationTime() const {
|
|
return expiration_time_;
|
|
}
|
|
|
|
void FakeSSLCertificate::SetCertificateExpirationTime(int64_t expiration_time) {
|
|
expiration_time_ = expiration_time;
|
|
}
|
|
|
|
void FakeSSLCertificate::set_digest_algorithm(const std::string& algorithm) {
|
|
digest_algorithm_ = algorithm;
|
|
}
|
|
|
|
bool FakeSSLCertificate::GetSignatureDigestAlgorithm(
|
|
std::string* algorithm) const {
|
|
*algorithm = digest_algorithm_;
|
|
return true;
|
|
}
|
|
|
|
bool FakeSSLCertificate::ComputeDigest(const std::string& algorithm,
|
|
unsigned char* digest,
|
|
size_t size,
|
|
size_t* length) const {
|
|
*length = rtc::ComputeDigest(algorithm, pem_string_.c_str(),
|
|
pem_string_.size(), digest, size);
|
|
return (*length != 0);
|
|
}
|
|
|
|
FakeSSLIdentity::FakeSSLIdentity(const std::string& pem_string)
|
|
: FakeSSLIdentity(FakeSSLCertificate(pem_string)) {}
|
|
|
|
FakeSSLIdentity::FakeSSLIdentity(const std::vector<std::string>& pem_strings) {
|
|
std::vector<std::unique_ptr<SSLCertificate>> certs;
|
|
for (const std::string& pem_string : pem_strings) {
|
|
certs.push_back(absl::make_unique<FakeSSLCertificate>(pem_string));
|
|
}
|
|
cert_chain_ = absl::make_unique<SSLCertChain>(std::move(certs));
|
|
}
|
|
|
|
FakeSSLIdentity::FakeSSLIdentity(const FakeSSLCertificate& cert)
|
|
: cert_chain_(absl::make_unique<SSLCertChain>(&cert)) {}
|
|
|
|
FakeSSLIdentity::FakeSSLIdentity(const FakeSSLIdentity& o)
|
|
: cert_chain_(o.cert_chain_->UniqueCopy()) {}
|
|
|
|
FakeSSLIdentity::~FakeSSLIdentity() = default;
|
|
|
|
FakeSSLIdentity* FakeSSLIdentity::GetReference() const {
|
|
return new FakeSSLIdentity(*this);
|
|
}
|
|
|
|
const SSLCertificate& FakeSSLIdentity::certificate() const {
|
|
return cert_chain_->Get(0);
|
|
}
|
|
|
|
const SSLCertChain& FakeSSLIdentity::cert_chain() const {
|
|
return *cert_chain_.get();
|
|
}
|
|
|
|
std::string FakeSSLIdentity::PrivateKeyToPEMString() const {
|
|
RTC_NOTREACHED(); // Not implemented.
|
|
return "";
|
|
}
|
|
|
|
std::string FakeSSLIdentity::PublicKeyToPEMString() const {
|
|
RTC_NOTREACHED(); // Not implemented.
|
|
return "";
|
|
}
|
|
|
|
bool FakeSSLIdentity::operator==(const SSLIdentity& other) const {
|
|
RTC_NOTREACHED(); // Not implemented.
|
|
return false;
|
|
}
|
|
|
|
} // namespace rtc
|