OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 // Handling of certificates and keypairs for SSLStreamAdapter's peer mode. | 11 // Handling of certificates and keypairs for SSLStreamAdapter's peer mode. |
12 | 12 |
13 #ifndef WEBRTC_BASE_SSLIDENTITY_H_ | 13 #ifndef WEBRTC_BASE_SSLIDENTITY_H_ |
14 #define WEBRTC_BASE_SSLIDENTITY_H_ | 14 #define WEBRTC_BASE_SSLIDENTITY_H_ |
15 | 15 |
16 #include <algorithm> | 16 #include <algorithm> |
| 17 #include <memory> |
17 #include <string> | 18 #include <string> |
18 #include <vector> | 19 #include <vector> |
19 | 20 |
20 #include "webrtc/base/buffer.h" | 21 #include "webrtc/base/buffer.h" |
21 #include "webrtc/base/messagedigest.h" | 22 #include "webrtc/base/messagedigest.h" |
22 #include "webrtc/base/scoped_ptr.h" | |
23 #include "webrtc/base/timeutils.h" | 23 #include "webrtc/base/timeutils.h" |
24 | 24 |
25 namespace rtc { | 25 namespace rtc { |
26 | 26 |
27 // Forward declaration due to circular dependency with SSLCertificate. | 27 // Forward declaration due to circular dependency with SSLCertificate. |
28 class SSLCertChain; | 28 class SSLCertChain; |
29 | 29 |
30 // Abstract interface overridden by SSL library specific | 30 // Abstract interface overridden by SSL library specific |
31 // implementations. | 31 // implementations. |
32 | 32 |
(...skipping 13 matching lines...) Expand all Loading... |
46 static SSLCertificate* FromPEMString(const std::string& pem_string); | 46 static SSLCertificate* FromPEMString(const std::string& pem_string); |
47 virtual ~SSLCertificate() {} | 47 virtual ~SSLCertificate() {} |
48 | 48 |
49 // Returns a new SSLCertificate object instance wrapping the same | 49 // Returns a new SSLCertificate object instance wrapping the same |
50 // underlying certificate, including its chain if present. | 50 // underlying certificate, including its chain if present. |
51 // Caller is responsible for freeing the returned object. | 51 // Caller is responsible for freeing the returned object. |
52 virtual SSLCertificate* GetReference() const = 0; | 52 virtual SSLCertificate* GetReference() const = 0; |
53 | 53 |
54 // Provides the cert chain, or null. The chain includes a copy of each | 54 // Provides the cert chain, or null. The chain includes a copy of each |
55 // certificate, excluding the leaf. | 55 // certificate, excluding the leaf. |
56 virtual rtc::scoped_ptr<SSLCertChain> GetChain() const = 0; | 56 virtual std::unique_ptr<SSLCertChain> GetChain() const = 0; |
57 | 57 |
58 // Returns a PEM encoded string representation of the certificate. | 58 // Returns a PEM encoded string representation of the certificate. |
59 virtual std::string ToPEMString() const = 0; | 59 virtual std::string ToPEMString() const = 0; |
60 | 60 |
61 // Provides a DER encoded binary representation of the certificate. | 61 // Provides a DER encoded binary representation of the certificate. |
62 virtual void ToDER(Buffer* der_buffer) const = 0; | 62 virtual void ToDER(Buffer* der_buffer) const = 0; |
63 | 63 |
64 // Gets the name of the digest algorithm that was used to compute this | 64 // Gets the name of the digest algorithm that was used to compute this |
65 // certificate's signature. | 65 // certificate's signature. |
66 virtual bool GetSignatureDigestAlgorithm(std::string* algorithm) const = 0; | 66 virtual bool GetSignatureDigestAlgorithm(std::string* algorithm) const = 0; |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 // |s| is not 0-terminated; its char count is defined by |length|. | 241 // |s| is not 0-terminated; its char count is defined by |length|. |
242 int64_t ASN1TimeToSec(const unsigned char* s, size_t length, bool long_format); | 242 int64_t ASN1TimeToSec(const unsigned char* s, size_t length, bool long_format); |
243 | 243 |
244 extern const char kPemTypeCertificate[]; | 244 extern const char kPemTypeCertificate[]; |
245 extern const char kPemTypeRsaPrivateKey[]; | 245 extern const char kPemTypeRsaPrivateKey[]; |
246 extern const char kPemTypeEcPrivateKey[]; | 246 extern const char kPemTypeEcPrivateKey[]; |
247 | 247 |
248 } // namespace rtc | 248 } // namespace rtc |
249 | 249 |
250 #endif // WEBRTC_BASE_SSLIDENTITY_H_ | 250 #endif // WEBRTC_BASE_SSLIDENTITY_H_ |
OLD | NEW |