mirror of
https://github.com/openssl/openssl.git
synced 2024-11-23 10:03:32 +08:00
pkcs12: Fix macsaltlen parameter type
It expects an integer so change it from non-argument type to positive integer type. Fixes #20969 CLA: trivial Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20979)
This commit is contained in:
parent
95d3c148ca
commit
26cf0767a7
@ -152,7 +152,7 @@ const OPTIONS pkcs12_options[] = {
|
||||
{"noiter", OPT_NOITER, '-', "Don't use encryption iteration"},
|
||||
{"nomaciter", OPT_NOMACITER, '-', "Don't use MAC iteration)"},
|
||||
{"maciter", OPT_MACITER, '-', "Unused, kept for backwards compatibility"},
|
||||
{"macsaltlen", OPT_MACSALTLEN, '-', "Specify the salt len for MAC"},
|
||||
{"macsaltlen", OPT_MACSALTLEN, 'p', "Specify the salt len for MAC"},
|
||||
{"nomac", OPT_NOMAC, '-', "Don't generate MAC"},
|
||||
{NULL}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user