diff options
author | tb <> | 2021-09-10 14:54:14 +0000 |
---|---|---|
committer | tb <> | 2021-09-10 14:54:14 +0000 |
commit | f761a729b9e8613a90e65a88ee4c3f176a2ba2cb (patch) | |
tree | 1d6030f41efb32cb92b1ffd6d1b129bdad694f46 /src/lib | |
parent | 61677786ab9d145dcd8fe3091876a97e1fa37ee9 (diff) | |
download | openbsd-f761a729b9e8613a90e65a88ee4c3f176a2ba2cb.tar.gz openbsd-f761a729b9e8613a90e65a88ee4c3f176a2ba2cb.tar.bz2 openbsd-f761a729b9e8613a90e65a88ee4c3f176a2ba2cb.zip |
Expose SSL_CTX_get0_privatekey() in ssl.h
ok beck
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libssl/ssl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index 407dd9b0ee..20c5a1e716 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl.h,v 1.204 2021/09/10 14:46:31 tb Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.205 2021/09/10 14:54:14 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -1244,9 +1244,7 @@ long SSL_CTX_get_timeout(const SSL_CTX *ctx); | |||
1244 | X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *); | 1244 | X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *); |
1245 | void SSL_CTX_set_cert_store(SSL_CTX *, X509_STORE *); | 1245 | void SSL_CTX_set_cert_store(SSL_CTX *, X509_STORE *); |
1246 | X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx); | 1246 | X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx); |
1247 | #if defined(LIBRESSL_INTERNAL) | ||
1248 | EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx); | 1247 | EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx); |
1249 | #endif | ||
1250 | int SSL_want(const SSL *s); | 1248 | int SSL_want(const SSL *s); |
1251 | int SSL_clear(SSL *s); | 1249 | int SSL_clear(SSL *s); |
1252 | 1250 | ||