summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl.h
diff options
context:
space:
mode:
authortb <>2021-03-31 16:52:15 +0000
committertb <>2021-03-31 16:52:15 +0000
commit87215fe78f12c94897426fd93d56f75076d71dee (patch)
treefb3bc85a14589823b6778c2356ac07add17219ca /src/lib/libssl/ssl.h
parent1cea3023fa1fb4c4a3098b40120a50c4fdc66813 (diff)
downloadopenbsd-87215fe78f12c94897426fd93d56f75076d71dee.tar.gz
openbsd-87215fe78f12c94897426fd93d56f75076d71dee.tar.bz2
openbsd-87215fe78f12c94897426fd93d56f75076d71dee.zip
Expose SSL_use_certificate_chain_file(3)
ok bcook inoguchi jsing
Diffstat (limited to '')
-rw-r--r--src/lib/libssl/ssl.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h
index 36c9ef02bd..8143464039 100644
--- a/src/lib/libssl/ssl.h
+++ b/src/lib/libssl/ssl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl.h,v 1.183 2021/03/19 19:51:07 tb Exp $ */ 1/* $OpenBSD: ssl.h,v 1.184 2021/03/31 16:52:15 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 *
@@ -1357,9 +1357,7 @@ int SSL_use_certificate_ASN1(SSL *ssl, const unsigned char *d, int len);
1357int SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file, int type); 1357int SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file, int type);
1358int SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type); 1358int SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type);
1359int SSL_use_certificate_file(SSL *ssl, const char *file, int type); 1359int SSL_use_certificate_file(SSL *ssl, const char *file, int type);
1360#if defined(LIBRESSL_INTERNAL)
1361int SSL_use_certificate_chain_file(SSL *ssl, const char *file); 1360int SSL_use_certificate_chain_file(SSL *ssl, const char *file);
1362#endif
1363int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, const char *file, int type); 1361int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, const char *file, int type);
1364int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, int type); 1362int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, int type);
1365int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type); 1363int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type);