Skip to content

Commit 8d38ba7

Browse files
Antoine LochetAntoine Lochet
authored andcommitted
Pulled PR softhsm#583 for more RSA OAEP algorithms support
1 parent 1ffecea commit 8d38ba7

File tree

9 files changed

+362
-108
lines changed

9 files changed

+362
-108
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ SoftHSM depends on a cryptographic library, Botan or OpenSSL.
3737
Minimum required versions:
3838

3939
- Botan 2.0.0
40-
- OpenSSL 1.0.0
40+
- OpenSSL 1.0.2
4141

4242
If you are using Botan, use at least version 2.6.0. This will improve
4343
the performance when doing public key operations.

m4/acx_crypto_backend.m4

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,11 @@ AC_DEFUN([ACX_CRYPTO_BACKEND],[
7575
AC_MSG_RESULT(OpenSSL)
7676
7777
if test "x${enable_fips}" = "xyes"; then
78-
ACX_OPENSSL(1,0,1)
78+
# needed for FIPS compliance, so change only when FIPS requirements change
79+
ACX_OPENSSL(1,0,2)
7980
else
80-
ACX_OPENSSL(1,0,0)
81+
# increase this as features from newer versions needed
82+
ACX_OPENSSL(1,0,2)
8183
fi
8284
8385
CRYPTO_INCLUDES=$OPENSSL_INCLUDES

0 commit comments

Comments
 (0)