Skip to content

Commit 0b5eaeb

Browse files
authored
Updated PSS support definition to account for new BoringSSL version (#2297)
1 parent 9311cab commit 0b5eaeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crypto/s2n_rsa_signing.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include "crypto/s2n_rsa.h"
2323

2424
/* Check for libcrypto 1.1 for RSA PSS Signing and EV_Key usage */
25-
#if S2N_OPENSSL_VERSION_AT_LEAST(1, 1, 1) && !defined(LIBRESSL_VERSION_NUMBER)
25+
#if S2N_OPENSSL_VERSION_AT_LEAST(1, 1, 1) && !defined(LIBRESSL_VERSION_NUMBER) && !defined(OPENSSL_IS_BORINGSSL)
2626
#define RSA_PSS_SIGNING_SUPPORTED 1
2727
#else
2828
#define RSA_PSS_SIGNING_SUPPORTED 0

0 commit comments

Comments
 (0)