diff options
author | Čestmír Kalina <ckalina@redhat.com> | 2021-09-27 22:45:38 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-03-17 01:12:47 +0100 |
commit | 6dfa998f7ea150f9c6d4e4727cf6d5c82a68a8da (patch) | |
tree | 3d9fcb93c1e3bd8b55f661e09fa30ac519b74368 /Configure | |
parent | e_os2: add ossl_static_assert_type_eq (diff) | |
download | openssl-6dfa998f7ea150f9c6d4e4727cf6d5c82a68a8da.tar.xz openssl-6dfa998f7ea150f9c6d4e4727cf6d5c82a68a8da.zip |
providers: add Argon2 KDF
https://datatracker.ietf.org/doc/rfc9106/
Signed-off-by: Čestmír Kalina <ckalina@redhat.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12256)
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -408,6 +408,7 @@ my @dtls = qw(dtls1 dtls1_2); my @disablables = ( "acvp-tests", "afalgeng", + "argon2", "aria", "asan", "asm", @@ -669,6 +670,8 @@ my @disable_cascades = ( "threads" => [ "thread-pool" ], "thread-pool" => [ "default-thread-pool" ], + "blake2" => [ "argon2" ], + "deprecated-3.0" => [ "engine", "srp" ] ); |