diff options
author | tb <> | 2021-05-10 17:03:57 +0000 |
---|---|---|
committer | tb <> | 2021-05-10 17:03:57 +0000 |
commit | c0bbd8901c307ebd2ab88321036be666f5c05fe5 (patch) | |
tree | a1a14031eb843e277c9dd597c6e4bb65269ab1b7 /src/lib/libssl/ssl.h | |
parent | f5551e4fe9237754b0cc287193ab377b4cd6b26f (diff) | |
download | openbsd-c0bbd8901c307ebd2ab88321036be666f5c05fe5.tar.gz openbsd-c0bbd8901c307ebd2ab88321036be666f5c05fe5.tar.bz2 openbsd-c0bbd8901c307ebd2ab88321036be666f5c05fe5.zip |
Provide SSL_CIPHER_find(3)
ok jsing
Diffstat (limited to 'src/lib/libssl/ssl.h')
-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 5ed2198b38..02f37fb0d0 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl.h,v 1.186 2021/03/31 16:59:32 tb Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.187 2021/05/10 17:03:57 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 | * |
@@ -1313,6 +1313,7 @@ const char * SSL_CIPHER_get_version(const SSL_CIPHER *c); | |||
1313 | const char * SSL_CIPHER_get_name(const SSL_CIPHER *c); | 1313 | const char * SSL_CIPHER_get_name(const SSL_CIPHER *c); |
1314 | unsigned long SSL_CIPHER_get_id(const SSL_CIPHER *c); | 1314 | unsigned long SSL_CIPHER_get_id(const SSL_CIPHER *c); |
1315 | uint16_t SSL_CIPHER_get_value(const SSL_CIPHER *c); | 1315 | uint16_t SSL_CIPHER_get_value(const SSL_CIPHER *c); |
1316 | const SSL_CIPHER *SSL_CIPHER_find(SSL *ssl, const unsigned char *ptr); | ||
1316 | int SSL_CIPHER_get_cipher_nid(const SSL_CIPHER *c); | 1317 | int SSL_CIPHER_get_cipher_nid(const SSL_CIPHER *c); |
1317 | int SSL_CIPHER_get_digest_nid(const SSL_CIPHER *c); | 1318 | int SSL_CIPHER_get_digest_nid(const SSL_CIPHER *c); |
1318 | int SSL_CIPHER_get_kx_nid(const SSL_CIPHER *c); | 1319 | int SSL_CIPHER_get_kx_nid(const SSL_CIPHER *c); |