Skip to content

Commit 6ecd7ec

Browse files
committed
Bump OpenSSL version
From what I see, EVP is introduced with version 1.0.2 and we require it for the OAEP methods.
1 parent fe08df8 commit 6ecd7ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

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

3838
- Botan 2.0.0
39-
- OpenSSL 1.0.0
39+
- OpenSSL 1.0.2
4040

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

m4/acx_crypto_backend.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ AC_DEFUN([ACX_CRYPTO_BACKEND],[
6565
AC_MSG_RESULT(OpenSSL)
6666
6767
if test "x${enable_fips}" = "xyes"; then
68-
ACX_OPENSSL(1,0,1)
68+
ACX_OPENSSL(1,0,2)
6969
else
70-
ACX_OPENSSL(1,0,0)
70+
ACX_OPENSSL(1,0,2)
7171
fi
7272
7373
CRYPTO_INCLUDES=$OPENSSL_INCLUDES

0 commit comments

Comments
 (0)