diff options
| author | tb <> | 2021-09-10 08:59:56 +0000 |
|---|---|---|
| committer | tb <> | 2021-09-10 08:59:56 +0000 |
| commit | 3feb1d1accf8d223a86ef9de0075765514706625 (patch) | |
| tree | 920356e0a3fdd8308ee7f126bce5e3726386f5dc /src/lib/libssl/ssl.h | |
| parent | 40f90f2357304c0308b36aac3cbdde2d09d7988c (diff) | |
| download | openbsd-3feb1d1accf8d223a86ef9de0075765514706625.tar.gz openbsd-3feb1d1accf8d223a86ef9de0075765514706625.tar.bz2 openbsd-3feb1d1accf8d223a86ef9de0075765514706625.zip | |
Prepare to provide SSL_CTX_get0_privatekey()
ok beck
Diffstat (limited to 'src/lib/libssl/ssl.h')
| -rw-r--r-- | src/lib/libssl/ssl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index 49335fc55a..7da3658d3f 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: ssl.h,v 1.200 2021/09/08 17:27:33 tb Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.201 2021/09/10 08:59:56 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 | * |
| @@ -1240,6 +1240,9 @@ long SSL_CTX_get_timeout(const SSL_CTX *ctx); | |||
| 1240 | X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *); | 1240 | X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *); |
| 1241 | void SSL_CTX_set_cert_store(SSL_CTX *, X509_STORE *); | 1241 | void SSL_CTX_set_cert_store(SSL_CTX *, X509_STORE *); |
| 1242 | X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx); | 1242 | X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx); |
| 1243 | #if defined(LIBRESSL_INTERNAL) | ||
| 1244 | EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx); | ||
| 1245 | #endif | ||
| 1243 | int SSL_want(const SSL *s); | 1246 | int SSL_want(const SSL *s); |
| 1244 | int SSL_clear(SSL *s); | 1247 | int SSL_clear(SSL *s); |
| 1245 | 1248 | ||
