summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2019-09-03 14:26:19 +1000
committerPauli <paul.dale@oracle.com>2019-09-06 19:27:57 +1000
commit232ac89ce20ee7fa466680d0da9e2514b23f7ca8 (patch)
treed882e460222a8bed1e47216e41179957f13c145d /test
parent65ce7e65531942fe9d55c12496b843d3db3bb2d3 (diff)
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-xtest/recipes/20-test_kdf.t2
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' },
);