diff options
author | Pauli <paul.dale@oracle.com> | 2019-09-03 06:26:19 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2019-09-06 11:27:57 +0200 |
commit | 232ac89ce20ee7fa466680d0da9e2514b23f7ca8 (patch) | |
tree | d882e460222a8bed1e47216e41179957f13c145d /test | |
parent | Update KDF documentation (section 3) (diff) | |
download | openssl-232ac89ce20ee7fa466680d0da9e2514b23f7ca8.tar.xz openssl-232ac89ce20ee7fa466680d0da9e2514b23f7ca8.zip |
Lowercase command line 'N' argument since params have lower case names
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9662)
Diffstat (limited to 'test')
-rwxr-xr-x | test/recipes/20-test_kdf.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/recipes/20-test_kdf.t b/test/recipes/20-test_kdf.t index 39fb485290..a03f6997b4 100755 --- a/test/recipes/20-test_kdf.t +++ b/test/recipes/20-test_kdf.t @@ -43,7 +43,7 @@ my @kdf_tests = ( ); my @scrypt_tests = ( - { cmd => [qw{openssl kdf -keylen 64 -kdfopt pass:password -kdfopt salt:NaCl -kdfopt N:1024 -kdfopt r:8 -kdfopt p:16 -kdfopt maxmem_bytes:10485760 id-scrypt}], + { cmd => [qw{openssl kdf -keylen 64 -kdfopt pass:password -kdfopt salt:NaCl -kdfopt n:1024 -kdfopt r:8 -kdfopt p:16 -kdfopt maxmem_bytes:10485760 id-scrypt}], expected => 'fd:ba:be:1c:9d:34:72:00:78:56:e7:19:0d:01:e9:fe:7c:6a:d7:cb:c8:23:78:30:e7:73:76:63:4b:37:31:62:2e:af:30:d9:2e:22:a3:88:6f:f1:09:27:9d:98:30:da:c7:27:af:b9:4a:83:ee:6d:83:60:cb:df:a2:cc:06:40', desc => 'SCRYPT' }, ); |