diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-09-10 14:54:15 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-09-10 14:54:15 +0000 |
commit | 194299f72c9c8c46ecfe0a892a4af9db3d5c33bf (patch) | |
tree | 8b020d02a662c916a958396c6027e8169bbed468 | |
parent | 810bd63c603bb3fd4c809bd2797217d8b3ec4324 (diff) |
Expose SSL_CTX_get0_privatekey() in ssl.h
ok beck
-rw-r--r-- | lib/libssl/ssl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index 407dd9b0ee4..20c5a1e7166 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.h,v 1.204 2021/09/10 14:46:31 tb Exp $ */ +/* $OpenBSD: ssl.h,v 1.205 2021/09/10 14:54:14 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1244,9 +1244,7 @@ long SSL_CTX_get_timeout(const SSL_CTX *ctx); X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *); void SSL_CTX_set_cert_store(SSL_CTX *, X509_STORE *); X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx); -#if defined(LIBRESSL_INTERNAL) EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx); -#endif int SSL_want(const SSL *s); int SSL_clear(SSL *s); |