mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-05-28 17:41:28 +03:00
tests: Fix torture_pki with libcrypto
This stops asking for a passphrase on commandline. Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
parent
720739bc2a
commit
cc13e85202
@ -399,6 +399,7 @@ static void torture_pki_import_privkey_base64_passphrase(void **state) {
|
||||
&key);
|
||||
assert_true(rc == -1);
|
||||
|
||||
#ifndef HAVE_LIBCRYPTO
|
||||
/* test if it returns -1 if passphrase is NULL */
|
||||
/* libcrypto asks for a passphrase, so skip this test */
|
||||
rc = ssh_pki_import_privkey_base64(torture_get_testkey(SSH_KEYTYPE_DSS, 0, 1),
|
||||
@ -407,7 +408,8 @@ static void torture_pki_import_privkey_base64_passphrase(void **state) {
|
||||
NULL,
|
||||
&key);
|
||||
assert_true(rc == -1);
|
||||
# endif
|
||||
#endif /* HAVE_LIBCRYPTO */
|
||||
#endif /* HAVE_DSA */
|
||||
/* same for ED25519 */
|
||||
rc = ssh_pki_import_privkey_base64(torture_get_testkey(SSH_KEYTYPE_ED25519, 0, 1),
|
||||
passphrase,
|
||||
|
Loading…
x
Reference in New Issue
Block a user