blob: 50632f6ec2041cadf00cfdcdabe83c98d129eee4 [file] [log] [blame]
Benjamin Wrightd5e1c372019-03-13 16:59:54 -07001/*
2 * Copyright (c) 2019 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
11#include <stddef.h>
12#include <stdint.h>
13#include <string>
14
15#include "rtc_base/ssl_certificate.h"
16#include "rtc_base/string_encode.h"
17
18namespace webrtc {
19
20void FuzzOneInput(const uint8_t* data, size_t size) {
21 std::string pem_certificate(reinterpret_cast<const char*>(data), size);
22
23 std::unique_ptr<rtc::SSLCertificate> cert =
24 rtc::SSLCertificate::FromPEMString(pem_certificate);
25
26 if (cert == nullptr) {
27 return;
28 }
29
30 cert->Clone();
31 cert->GetStats();
32 cert->ToPEMString();
33 cert->CertificateExpirationTime();
34
35 std::string algorithm;
36 cert->GetSignatureDigestAlgorithm(algorithm);
37
38 unsigned char digest[rtc::MessageDigest::kMaxSize];
39 size_t digest_len;
40 cert->ComputeDigest(algorithm, digest, rtc::MessageDigest::kMaxSize,
41 &digest_len);
42
43 rtc::Buffer der_buffer;
44 cert->ToDER(&der_buffer);
45}
46
47} // namespace webrtc