| 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 <string> | 17 #include <string> |
| 18 #include <vector> | 18 #include <vector> |
| 19 | 19 |
| 20 #include "webrtc/base/buffer.h" | 20 #include "webrtc/base/buffer.h" |
| 21 #include "webrtc/base/messagedigest.h" | 21 #include "webrtc/base/messagedigest.h" |
| 22 #include "webrtc/base/scoped_ptr.h" |
| 22 #include "webrtc/base/timeutils.h" | 23 #include "webrtc/base/timeutils.h" |
| 23 | 24 |
| 24 namespace rtc { | 25 namespace rtc { |
| 25 | 26 |
| 26 // Forward declaration due to circular dependency with SSLCertificate. | 27 // Forward declaration due to circular dependency with SSLCertificate. |
| 27 class SSLCertChain; | 28 class SSLCertChain; |
| 28 | 29 |
| 29 // Abstract interface overridden by SSL library specific | 30 // Abstract interface overridden by SSL library specific |
| 30 // implementations. | 31 // implementations. |
| 31 | 32 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 43 // parsing was successful. | 44 // parsing was successful. |
| 44 // Caller is responsible for freeing the returned object. | 45 // Caller is responsible for freeing the returned object. |
| 45 static SSLCertificate* FromPEMString(const std::string& pem_string); | 46 static SSLCertificate* FromPEMString(const std::string& pem_string); |
| 46 virtual ~SSLCertificate() {} | 47 virtual ~SSLCertificate() {} |
| 47 | 48 |
| 48 // Returns a new SSLCertificate object instance wrapping the same | 49 // Returns a new SSLCertificate object instance wrapping the same |
| 49 // underlying certificate, including its chain if present. | 50 // underlying certificate, including its chain if present. |
| 50 // Caller is responsible for freeing the returned object. | 51 // Caller is responsible for freeing the returned object. |
| 51 virtual SSLCertificate* GetReference() const = 0; | 52 virtual SSLCertificate* GetReference() const = 0; |
| 52 | 53 |
| 53 // Provides the cert chain, or returns false. The caller owns the chain. | 54 // Provides the cert chain, or null. The chain includes a copy of each |
| 54 // The chain includes a copy of each certificate, excluding the leaf. | 55 // certificate, excluding the leaf. |
| 55 virtual bool GetChain(SSLCertChain** chain) const = 0; | 56 virtual rtc::scoped_ptr<SSLCertChain> GetChain() const = 0; |
| 56 | 57 |
| 57 // Returns a PEM encoded string representation of the certificate. | 58 // Returns a PEM encoded string representation of the certificate. |
| 58 virtual std::string ToPEMString() const = 0; | 59 virtual std::string ToPEMString() const = 0; |
| 59 | 60 |
| 60 // Provides a DER encoded binary representation of the certificate. | 61 // Provides a DER encoded binary representation of the certificate. |
| 61 virtual void ToDER(Buffer* der_buffer) const = 0; | 62 virtual void ToDER(Buffer* der_buffer) const = 0; |
| 62 | 63 |
| 63 // 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 |
| 64 // certificate's signature. | 65 // certificate's signature. |
| 65 virtual bool GetSignatureDigestAlgorithm(std::string* algorithm) const = 0; | 66 virtual bool GetSignatureDigestAlgorithm(std::string* algorithm) const = 0; |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 // |s| is not 0-terminated; its char count is defined by |length|. | 240 // |s| is not 0-terminated; its char count is defined by |length|. |
| 240 int64_t ASN1TimeToSec(const unsigned char* s, size_t length, bool long_format); | 241 int64_t ASN1TimeToSec(const unsigned char* s, size_t length, bool long_format); |
| 241 | 242 |
| 242 extern const char kPemTypeCertificate[]; | 243 extern const char kPemTypeCertificate[]; |
| 243 extern const char kPemTypeRsaPrivateKey[]; | 244 extern const char kPemTypeRsaPrivateKey[]; |
| 244 extern const char kPemTypeEcPrivateKey[]; | 245 extern const char kPemTypeEcPrivateKey[]; |
| 245 | 246 |
| 246 } // namespace rtc | 247 } // namespace rtc |
| 247 | 248 |
| 248 #endif // WEBRTC_BASE_SSLIDENTITY_H_ | 249 #endif // WEBRTC_BASE_SSLIDENTITY_H_ |
| OLD | NEW |