mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 06:40:43 +01:00

In https://webrtc-review.googlesource.com/c/src/+/1560 we moved WebRTC from src/webrtc to src/ (in order to preserve an healthy git history). This CL takes care of fixing header guards, #include paths, etc... NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=tommi@webrtc.org Bug: chromium:611808 Change-Id: Iea91618212bee0af16aa3f05071eab8f93706578 Reviewed-on: https://webrtc-review.googlesource.com/1561 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19846}
112 lines
3.4 KiB
C++
112 lines
3.4 KiB
C++
/*
|
|
* Copyright 2012 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/sslfingerprint.h"
|
|
|
|
#include <ctype.h>
|
|
#include <string>
|
|
|
|
#include "rtc_base/helpers.h"
|
|
#include "rtc_base/logging.h"
|
|
#include "rtc_base/messagedigest.h"
|
|
#include "rtc_base/stringencode.h"
|
|
|
|
namespace rtc {
|
|
|
|
SSLFingerprint* SSLFingerprint::Create(
|
|
const std::string& algorithm, const rtc::SSLIdentity* identity) {
|
|
if (!identity) {
|
|
return nullptr;
|
|
}
|
|
|
|
return Create(algorithm, &(identity->certificate()));
|
|
}
|
|
|
|
SSLFingerprint* SSLFingerprint::Create(
|
|
const std::string& algorithm, const rtc::SSLCertificate* cert) {
|
|
uint8_t digest_val[64];
|
|
size_t digest_len;
|
|
bool ret = cert->ComputeDigest(
|
|
algorithm, digest_val, sizeof(digest_val), &digest_len);
|
|
if (!ret) {
|
|
return nullptr;
|
|
}
|
|
|
|
return new SSLFingerprint(algorithm, digest_val, digest_len);
|
|
}
|
|
|
|
SSLFingerprint* SSLFingerprint::CreateFromRfc4572(
|
|
const std::string& algorithm, const std::string& fingerprint) {
|
|
if (algorithm.empty() || !rtc::IsFips180DigestAlgorithm(algorithm))
|
|
return nullptr;
|
|
|
|
if (fingerprint.empty())
|
|
return nullptr;
|
|
|
|
size_t value_len;
|
|
char value[rtc::MessageDigest::kMaxSize];
|
|
value_len = rtc::hex_decode_with_delimiter(value, sizeof(value),
|
|
fingerprint.c_str(),
|
|
fingerprint.length(),
|
|
':');
|
|
if (!value_len)
|
|
return nullptr;
|
|
|
|
return new SSLFingerprint(algorithm, reinterpret_cast<uint8_t*>(value),
|
|
value_len);
|
|
}
|
|
|
|
SSLFingerprint* SSLFingerprint::CreateFromCertificate(
|
|
const RTCCertificate* cert) {
|
|
std::string digest_alg;
|
|
if (!cert->ssl_certificate().GetSignatureDigestAlgorithm(&digest_alg)) {
|
|
LOG(LS_ERROR) << "Failed to retrieve the certificate's digest algorithm";
|
|
return nullptr;
|
|
}
|
|
|
|
SSLFingerprint* fingerprint = Create(digest_alg, cert->identity());
|
|
if (!fingerprint) {
|
|
LOG(LS_ERROR) << "Failed to create identity fingerprint, alg="
|
|
<< digest_alg;
|
|
}
|
|
return fingerprint;
|
|
}
|
|
|
|
SSLFingerprint::SSLFingerprint(const std::string& algorithm,
|
|
const uint8_t* digest_in,
|
|
size_t digest_len)
|
|
: algorithm(algorithm) {
|
|
digest.SetData(digest_in, digest_len);
|
|
}
|
|
|
|
SSLFingerprint::SSLFingerprint(const SSLFingerprint& from)
|
|
: algorithm(from.algorithm), digest(from.digest) {}
|
|
|
|
bool SSLFingerprint::operator==(const SSLFingerprint& other) const {
|
|
return algorithm == other.algorithm &&
|
|
digest == other.digest;
|
|
}
|
|
|
|
std::string SSLFingerprint::GetRfc4572Fingerprint() const {
|
|
std::string fingerprint =
|
|
rtc::hex_encode_with_delimiter(digest.data<char>(), digest.size(), ':');
|
|
std::transform(fingerprint.begin(), fingerprint.end(),
|
|
fingerprint.begin(), ::toupper);
|
|
return fingerprint;
|
|
}
|
|
|
|
std::string SSLFingerprint::ToString() const {
|
|
std::string fp_str = algorithm;
|
|
fp_str.append(" ");
|
|
fp_str.append(GetRfc4572Fingerprint());
|
|
return fp_str;
|
|
}
|
|
|
|
} // namespace rtc
|