mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

This is a reland of Id63f0deb7b335690157ab157c35177b7836688da. Original change's description: > Enable the clang style plugin in rtc_base/ > > Enabled the plugin and cleaned up all issues it found. > > Bug: webrtc:163 > Change-Id: Id63f0deb7b335690157ab157c35177b7836688da > Reviewed-on: https://webrtc-review.googlesource.com/14660 > Commit-Queue: Steve Anton <steveanton@webrtc.org> > Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#20401} Bug: webrtc:163 Change-Id: I861a5fe741215115b0e7a2be9c0786836ff5376e Reviewed-on: https://webrtc-review.googlesource.com/15040 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Steve Anton <steveanton@webrtc.org> Cr-Commit-Position: refs/heads/master@{#20416}
118 lines
3.5 KiB
C++
118 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 "rtc_base/checks.h"
|
|
#include "rtc_base/messagedigest.h"
|
|
#include "rtc_base/ptr_util.h"
|
|
|
|
namespace rtc {
|
|
|
|
FakeSSLCertificate::FakeSSLCertificate(const std::string& data)
|
|
: data_(data), digest_algorithm_(DIGEST_SHA_1), expiration_time_(-1) {}
|
|
|
|
FakeSSLCertificate::FakeSSLCertificate(const std::vector<std::string>& certs)
|
|
: data_(certs.front()),
|
|
digest_algorithm_(DIGEST_SHA_1),
|
|
expiration_time_(-1) {
|
|
std::vector<std::string>::const_iterator it;
|
|
// Skip certs[0].
|
|
for (it = certs.begin() + 1; it != certs.end(); ++it) {
|
|
certs_.push_back(FakeSSLCertificate(*it));
|
|
}
|
|
}
|
|
|
|
FakeSSLCertificate::FakeSSLCertificate(const FakeSSLCertificate&) = default;
|
|
|
|
FakeSSLCertificate::~FakeSSLCertificate() = default;
|
|
|
|
FakeSSLCertificate* FakeSSLCertificate::GetReference() const {
|
|
return new FakeSSLCertificate(*this);
|
|
}
|
|
|
|
std::string FakeSSLCertificate::ToPEMString() const {
|
|
return data_;
|
|
}
|
|
|
|
void FakeSSLCertificate::ToDER(Buffer* der_buffer) const {
|
|
std::string der_string;
|
|
RTC_CHECK(SSLIdentity::PemToDer(kPemTypeCertificate, data_, &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, data_.c_str(), data_.size(), digest, size);
|
|
return (*length != 0);
|
|
}
|
|
|
|
std::unique_ptr<SSLCertChain> FakeSSLCertificate::GetChain() const {
|
|
if (certs_.empty())
|
|
return nullptr;
|
|
std::vector<std::unique_ptr<SSLCertificate>> new_certs(certs_.size());
|
|
std::transform(certs_.begin(), certs_.end(), new_certs.begin(), DupCert);
|
|
return MakeUnique<SSLCertChain>(std::move(new_certs));
|
|
}
|
|
|
|
FakeSSLIdentity::FakeSSLIdentity(const std::string& data) : cert_(data) {}
|
|
|
|
FakeSSLIdentity::FakeSSLIdentity(const FakeSSLCertificate& cert)
|
|
: cert_(cert) {}
|
|
|
|
FakeSSLIdentity* FakeSSLIdentity::GetReference() const {
|
|
return new FakeSSLIdentity(*this);
|
|
}
|
|
|
|
const FakeSSLCertificate& FakeSSLIdentity::certificate() const {
|
|
return cert_;
|
|
}
|
|
|
|
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
|