diff options
author | 2018-02-17 15:13:12 +0000 | |
---|---|---|
committer | 2018-02-17 15:13:12 +0000 | |
commit | 99b961624f3283ec8a6bc21b38e658db553f95a8 (patch) | |
tree | c549e55f6cea385c4bb0889eda2536a07e20f6e4 /lib/libssl/ssl.h | |
parent | Provide SSL_CTX_get_tlsext_status_cb() and SSL_CTX_get_tlsext_status_arg(). (diff) | |
download | wireguard-openbsd-99b961624f3283ec8a6bc21b38e658db553f95a8.tar.xz wireguard-openbsd-99b961624f3283ec8a6bc21b38e658db553f95a8.zip |
Provide SSL_CTX_get0_certificate()
Diffstat (limited to 'lib/libssl/ssl.h')
-rw-r--r-- | lib/libssl/ssl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index bc0f5316a47..0784ce1ef73 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.h,v 1.137 2018/02/17 15:08:21 jsing Exp $ */ +/* $OpenBSD: ssl.h,v 1.138 2018/02/17 15:13:12 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1215,6 +1215,7 @@ long SSL_CTX_set_timeout(SSL_CTX *ctx, long t); 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); int SSL_want(const SSL *s); int SSL_clear(SSL *s); |