From: Jouni Malinen Date: Sat, 1 Aug 2015 12:52:35 +0000 (+0300) Subject: OpenSSL: Comment out openssl_get_keyblock_size() if CONFIG_FIPS=y X-Git-Tag: hostap_2_5~250 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=266cf4a0bc833ac922632e18b72ad03a07df38cf;p=thirdparty%2Fhostap.git OpenSSL: Comment out openssl_get_keyblock_size() if CONFIG_FIPS=y This function is not used in CONFIG_FIPS=y builds. Signed-off-by: Jouni Malinen --- diff --git a/src/crypto/tls_openssl.c b/src/crypto/tls_openssl.c index 601ea93d5..1dce157d0 100644 --- a/src/crypto/tls_openssl.c +++ b/src/crypto/tls_openssl.c @@ -2679,6 +2679,7 @@ int tls_connection_get_keys(void *ssl_ctx, struct tls_connection *conn, } +#ifndef CONFIG_FIPS static int openssl_get_keyblock_size(SSL *ssl) { #if OPENSSL_VERSION_NUMBER < 0x10100000L @@ -2739,6 +2740,7 @@ static int openssl_get_keyblock_size(SSL *ssl) EVP_CIPHER_iv_length(c)); #endif } +#endif /* CONFIG_FIPS */ static int openssl_tls_prf(void *tls_ctx, struct tls_connection *conn,