summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_local.h
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2022-05-25 17:30:33 +0100
committerMatt Caswell <matt@openssl.org>2022-08-18 16:38:13 +0100
commit8124ab56d4e8985151c5a0c4dca6af128fa89f2c (patch)
treee9029ff83a87bd64746a1d1b02284ad57b7728a6 /ssl/ssl_local.h
parent6366bdd9be281984d675865ed5467bcf523640c5 (diff)
Remove some final references to the SSL object in the record layer
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18132)
Diffstat (limited to 'ssl/ssl_local.h')
-rw-r--r--ssl/ssl_local.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/ssl/ssl_local.h b/ssl/ssl_local.h
index 16cb7d64db..b544c39c70 100644
--- a/ssl/ssl_local.h
+++ b/ssl/ssl_local.h
@@ -2862,11 +2862,12 @@ __owur int ssl_log_secret(SSL_CONNECTION *s, const char *label,
/* ktls.c */
int ktls_check_supported_cipher(const SSL_CONNECTION *s, const EVP_CIPHER *c,
const EVP_MD *md, size_t taglen);
-int ktls_configure_crypto(SSL_CONNECTION *s, const EVP_CIPHER *c, void *rl_sequence,
- ktls_crypto_info_t *crypto_info, int is_tx,
- unsigned char *iv, size_t ivlen, unsigned char *key,
- size_t keylen, unsigned char *mac_key,
- size_t mac_secret_size);
+int ktls_configure_crypto(OSSL_LIB_CTX *libctx, int version,
+ const EVP_CIPHER *c, const EVP_MD *md,
+ void *rl_sequence, ktls_crypto_info_t *crypto_info,
+ int is_tx, unsigned char *iv, size_t ivlen,
+ unsigned char *key, size_t keylen,
+ unsigned char *mac_key, size_t mac_secret_size);
# endif
__owur int srp_generate_server_master_secret(SSL_CONNECTION *s);