diff options
| author | tb <> | 2021-05-10 17:03:57 +0000 |
|---|---|---|
| committer | tb <> | 2021-05-10 17:03:57 +0000 |
| commit | 7c02dd4d178f15af1b7d3300741c24d4ebd8afb6 (patch) | |
| tree | a1a14031eb843e277c9dd597c6e4bb65269ab1b7 /src/lib/libssl/ssl.h | |
| parent | 0736b9c781c627f1c51859d70c0dd39522c9a5a7 (diff) | |
| download | openbsd-7c02dd4d178f15af1b7d3300741c24d4ebd8afb6.tar.gz openbsd-7c02dd4d178f15af1b7d3300741c24d4ebd8afb6.tar.bz2 openbsd-7c02dd4d178f15af1b7d3300741c24d4ebd8afb6.zip | |
Provide SSL_CIPHER_find(3)
ok jsing
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 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); |
