/* * Copyright 2018 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. */ // Generic interface for SSL Certificates, used in both the SSLAdapter // for TLS TURN connections and the SSLStreamAdapter for DTLS Peer to Peer // Connections for SRTP Key negotiation and SCTP encryption. #ifndef RTC_BASE_SSL_CERTIFICATE_H_ #define RTC_BASE_SSL_CERTIFICATE_H_ #include <stddef.h> #include <stdint.h> #include <memory> #include <string> #include <vector> #include "absl/strings/string_view.h" #include "rtc_base/buffer.h" #include "rtc_base/system/rtc_export.h" namespace rtc { struct RTC_EXPORT SSLCertificateStats { … }; // Abstract interface overridden by SSL library specific // implementations. // A somewhat opaque type used to encapsulate a certificate. // Wraps the SSL library's notion of a certificate, with reference counting. // The SSLCertificate object is pretty much immutable once created. // (The OpenSSL implementation only does reference counting and // possibly caching of intermediate results.) class RTC_EXPORT SSLCertificate { … }; // SSLCertChain is a simple wrapper for a vector of SSLCertificates. It serves // primarily to ensure proper memory management (especially deletion) of the // SSLCertificate pointers. class RTC_EXPORT SSLCertChain final { … }; // SSLCertificateVerifier provides a simple interface to allow third parties to // define their own certificate verification code. It is completely independent // from the underlying SSL implementation. class SSLCertificateVerifier { … }; } // namespace rtc #endif // RTC_BASE_SSL_CERTIFICATE_H_