OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_SSL_SCOPED_OPENSSL_TYPES_H_ | 5 #ifndef NET_SSL_SCOPED_OPENSSL_TYPES_H_ |
6 #define NET_SSL_SCOPED_OPENSSL_TYPES_H_ | 6 #define NET_SSL_SCOPED_OPENSSL_TYPES_H_ |
7 | 7 |
8 #include <openssl/ssl.h> | 8 #include <openssl/ssl.h> |
9 #include <openssl/x509.h> | 9 #include <openssl/x509.h> |
10 | 10 |
11 #include "crypto/scoped_openssl_types.h" | 11 #include "crypto/scoped_openssl_types.h" |
12 | 12 |
13 namespace net { | 13 namespace net { |
14 | 14 |
15 using ScopedPKCS8_PRIV_KEY_INFO = | 15 using ScopedPKCS8_PRIV_KEY_INFO = |
16 crypto::ScopedOpenSSL<PKCS8_PRIV_KEY_INFO, PKCS8_PRIV_KEY_INFO_free>::Type; | 16 crypto::ScopedOpenSSL<PKCS8_PRIV_KEY_INFO, PKCS8_PRIV_KEY_INFO_free>; |
17 using ScopedSSL = crypto::ScopedOpenSSL<SSL, SSL_free>::Type; | 17 using ScopedSSL = crypto::ScopedOpenSSL<SSL, SSL_free>; |
18 using ScopedSSL_CTX = crypto::ScopedOpenSSL<SSL_CTX, SSL_CTX_free>::Type; | 18 using ScopedSSL_CTX = crypto::ScopedOpenSSL<SSL_CTX, SSL_CTX_free>; |
19 using ScopedX509 = crypto::ScopedOpenSSL<X509, X509_free>::Type; | 19 using ScopedX509 = crypto::ScopedOpenSSL<X509, X509_free>; |
20 | 20 |
21 } // namespace net | 21 } // namespace net |
22 | 22 |
23 #endif // NET_SSL_SCOPED_OPENSSL_TYPES_H_ | 23 #endif // NET_SSL_SCOPED_OPENSSL_TYPES_H_ |
OLD | NEW |