diff options
author | jsing <> | 2018-02-17 15:13:12 +0000 |
---|---|---|
committer | jsing <> | 2018-02-17 15:13:12 +0000 |
commit | fa2d9de703f0090c30f45cb99f79591dad4ed787 (patch) | |
tree | eda693ffe3991c5c053781dc473b018f9fcdaacb /src/lib/libssl/ssl.h | |
parent | ca5a90bc040c87944d3af58d51c80de05b02c60b (diff) | |
download | openbsd-fa2d9de703f0090c30f45cb99f79591dad4ed787.tar.gz openbsd-fa2d9de703f0090c30f45cb99f79591dad4ed787.tar.bz2 openbsd-fa2d9de703f0090c30f45cb99f79591dad4ed787.zip |
Provide SSL_CTX_get0_certificate()
Diffstat (limited to '')
-rw-r--r-- | src/lib/libssl/ssl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index bc0f5316a4..0784ce1ef7 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl.h,v 1.137 2018/02/17 15:08:21 jsing Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.138 2018/02/17 15:13:12 jsing 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 | * |
@@ -1215,6 +1215,7 @@ long SSL_CTX_set_timeout(SSL_CTX *ctx, long t); | |||
1215 | long SSL_CTX_get_timeout(const SSL_CTX *ctx); | 1215 | long SSL_CTX_get_timeout(const SSL_CTX *ctx); |
1216 | X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *); | 1216 | X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *); |
1217 | void SSL_CTX_set_cert_store(SSL_CTX *, X509_STORE *); | 1217 | void SSL_CTX_set_cert_store(SSL_CTX *, X509_STORE *); |
1218 | X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx); | ||
1218 | int SSL_want(const SSL *s); | 1219 | int SSL_want(const SSL *s); |
1219 | int SSL_clear(SSL *s); | 1220 | int SSL_clear(SSL *s); |
1220 | 1221 | ||