blob: c6078101927ed28a3f0545054e1384f05592be67 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2012 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 09:11:00 -080011#include "rtc_base/ssl_fingerprint.h"
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000012
13#include <ctype.h>
Yves Gerey988cc082018-10-23 12:03:01 +020014#include <cstdint>
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000015#include <string>
16
Steve Anton2acd1632019-03-25 13:48:30 -070017#include "absl/algorithm/container.h"
tzikd0be0022018-10-18 15:10:02 +090018#include "absl/memory/memory.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020019#include "rtc_base/logging.h"
Steve Anton10542f22019-01-11 09:11:00 -080020#include "rtc_base/message_digest.h"
21#include "rtc_base/rtc_certificate.h"
22#include "rtc_base/ssl_certificate.h"
23#include "rtc_base/ssl_identity.h"
24#include "rtc_base/string_encode.h"
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000025
26namespace rtc {
27
Henrik Grunell2b156262018-10-11 11:15:48 +000028SSLFingerprint* SSLFingerprint::Create(const std::string& algorithm,
Mirko Bonadei6932fb22018-10-15 14:18:03 +000029 const rtc::SSLIdentity* identity) {
Steve Anton4905edb2018-10-15 19:27:44 -070030 return CreateUnique(algorithm, *identity).release();
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000031}
32
Steve Anton4905edb2018-10-15 19:27:44 -070033std::unique_ptr<SSLFingerprint> SSLFingerprint::CreateUnique(
34 const std::string& algorithm,
35 const rtc::SSLIdentity& identity) {
36 return Create(algorithm, identity.certificate());
37}
38
39std::unique_ptr<SSLFingerprint> SSLFingerprint::Create(
40 const std::string& algorithm,
41 const rtc::SSLCertificate& cert) {
Peter Boström0c4e06b2015-10-07 12:23:21 +020042 uint8_t digest_val[64];
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000043 size_t digest_len;
Steve Anton4905edb2018-10-15 19:27:44 -070044 bool ret = cert.ComputeDigest(algorithm, digest_val, sizeof(digest_val),
45 &digest_len);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000046 if (!ret) {
deadbeef37f5ecf2017-02-27 14:06:41 -080047 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000048 }
Steve Anton4905edb2018-10-15 19:27:44 -070049 return absl::make_unique<SSLFingerprint>(
50 algorithm, ArrayView<const uint8_t>(digest_val, digest_len));
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000051}
52
53SSLFingerprint* SSLFingerprint::CreateFromRfc4572(
Yves Gerey665174f2018-06-19 15:03:05 +020054 const std::string& algorithm,
55 const std::string& fingerprint) {
Steve Anton4905edb2018-10-15 19:27:44 -070056 return CreateUniqueFromRfc4572(algorithm, fingerprint).release();
57}
58
59std::unique_ptr<SSLFingerprint> SSLFingerprint::CreateUniqueFromRfc4572(
60 const std::string& algorithm,
61 const std::string& fingerprint) {
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000062 if (algorithm.empty() || !rtc::IsFips180DigestAlgorithm(algorithm))
deadbeef37f5ecf2017-02-27 14:06:41 -080063 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000064
65 if (fingerprint.empty())
deadbeef37f5ecf2017-02-27 14:06:41 -080066 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000067
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000068 char value[rtc::MessageDigest::kMaxSize];
Steve Anton4905edb2018-10-15 19:27:44 -070069 size_t value_len = rtc::hex_decode_with_delimiter(
Yves Gerey665174f2018-06-19 15:03:05 +020070 value, sizeof(value), fingerprint.c_str(), fingerprint.length(), ':');
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000071 if (!value_len)
deadbeef37f5ecf2017-02-27 14:06:41 -080072 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000073
Steve Anton4905edb2018-10-15 19:27:44 -070074 return absl::make_unique<SSLFingerprint>(
75 algorithm,
76 ArrayView<const uint8_t>(reinterpret_cast<uint8_t*>(value), value_len));
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000077}
78
Steve Anton4905edb2018-10-15 19:27:44 -070079std::unique_ptr<SSLFingerprint> SSLFingerprint::CreateFromCertificate(
80 const RTCCertificate& cert) {
deadbeef8662f942017-01-20 21:20:51 -080081 std::string digest_alg;
Benjamin Wright6c6c9df2018-10-25 01:16:26 -070082 if (!cert.GetSSLCertificate().GetSignatureDigestAlgorithm(&digest_alg)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010083 RTC_LOG(LS_ERROR)
84 << "Failed to retrieve the certificate's digest algorithm";
deadbeef8662f942017-01-20 21:20:51 -080085 return nullptr;
86 }
87
Steve Anton4905edb2018-10-15 19:27:44 -070088 std::unique_ptr<SSLFingerprint> fingerprint =
89 CreateUnique(digest_alg, *cert.identity());
deadbeef8662f942017-01-20 21:20:51 -080090 if (!fingerprint) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010091 RTC_LOG(LS_ERROR) << "Failed to create identity fingerprint, alg="
92 << digest_alg;
deadbeef8662f942017-01-20 21:20:51 -080093 }
94 return fingerprint;
95}
96
Peter Boström0c4e06b2015-10-07 12:23:21 +020097SSLFingerprint::SSLFingerprint(const std::string& algorithm,
Steve Anton4905edb2018-10-15 19:27:44 -070098 ArrayView<const uint8_t> digest_view)
99 : algorithm(algorithm), digest(digest_view.data(), digest_view.size()) {}
100
101SSLFingerprint::SSLFingerprint(const std::string& algorithm,
Peter Boström0c4e06b2015-10-07 12:23:21 +0200102 const uint8_t* digest_in,
103 size_t digest_len)
Steve Anton4905edb2018-10-15 19:27:44 -0700104 : SSLFingerprint(algorithm, MakeArrayView(digest_in, digest_len)) {}
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000105
106SSLFingerprint::SSLFingerprint(const SSLFingerprint& from)
107 : algorithm(from.algorithm), digest(from.digest) {}
108
109bool SSLFingerprint::operator==(const SSLFingerprint& other) const {
Yves Gerey665174f2018-06-19 15:03:05 +0200110 return algorithm == other.algorithm && digest == other.digest;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000111}
112
113std::string SSLFingerprint::GetRfc4572Fingerprint() const {
114 std::string fingerprint =
Karl Wiberg94784372015-04-20 14:03:07 +0200115 rtc::hex_encode_with_delimiter(digest.data<char>(), digest.size(), ':');
Steve Anton2acd1632019-03-25 13:48:30 -0700116 absl::c_transform(fingerprint, fingerprint.begin(), ::toupper);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000117 return fingerprint;
118}
119
mikescarlette7748672016-04-29 20:20:54 -0700120std::string SSLFingerprint::ToString() const {
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000121 std::string fp_str = algorithm;
122 fp_str.append(" ");
123 fp_str.append(GetRfc4572Fingerprint());
124 return fp_str;
125}
126
127} // namespace rtc