search for: sshkey_fuzz_test

Displaying 4 results from an estimated 4 matches for "sshkey_fuzz_test".

Did you mean: sshkey_fuzz_tests
2015 Jun 23
2
Call for testing: OpenSSH 6.9
..._EQ(sshkey_load_public(test_data_file("ed25519_1.pub"), &k2, diff --git a/regress/unittests/sshkey/test_fuzz.c b/regress/unittests/sshkey/test_fuzz.c index 1f08a2e..4fc6584 100644 --- a/regress/unittests/sshkey/test_fuzz.c +++ b/regress/unittests/sshkey/test_fuzz.c @@ -150,6 +150,7 @@ sshkey_fuzz_tests(void) TEST_DONE(); #endif +#ifdef WITH_OPENSSL TEST_START("fuzz RSA private"); buf = load_file("rsa_1"); fuzz = fuzz_begin(FUZZ_BASE64, sshbuf_mutable_ptr(buf), @@ -282,7 +283,8 @@ sshkey_fuzz_tests(void) sshbuf_free(fuzzed); fuzz_cleanup(fuzz); TEST_DONE(); -#...
2018 Nov 19
2
[PATCH] openssl-compat: Test for OpenSSL_add_all_algorithms before using.
OpenSSL 1.1.0 has deprecated this function. --- configure.ac | 1 + openbsd-compat/openssl-compat.c | 2 ++ openbsd-compat/openssl-compat.h | 4 ++++ 3 files changed, 7 insertions(+) diff --git a/configure.ac b/configure.ac index 3f7fe2cd..db2aade8 100644 --- a/configure.ac +++ b/configure.ac @@ -2710,6 +2710,7 @@ if test "x$openssl" = "xyes" ; then ])
2015 May 29
16
Call for testing: OpenSSH 6.9
Hi, OpenSSH 6.9 is almost ready for release, so we would appreciate testing on as many platforms and systems as possible. This release contains some substantial new features and a number of bugfixes. Snapshot releases for portable OpenSSH are available from http://www.mindrot.org/openssh_snap/ The OpenBSD version is available in CVS HEAD: http://www.openbsd.org/anoncvs.html Portable OpenSSH is
2015 Jan 23
9
[Bug 2343] New: test_fuzz.c won't compile if ssh1 support is disabled
...ty: enhancement Priority: P5 Component: Build system Assignee: unassigned-bugs at mindrot.org Reporter: ismail at donmez.ws Compile openssh with ./configure --without-ssh1 Try to run "make tests": regress/unittests/sshkey/test_fuzz.o: In function `sshkey_fuzz_tests': /havana/sources/openssh/regress/unittests/sshkey/test_fuzz.c:135: undefined reference to `sshkey_parse_public_rsa1_fileblob' /havana/sources/openssh/regress/unittests/sshkey/test_fuzz.c:143: undefined reference to `sshkey_parse_public_rsa1_fileblob' collect2: error: ld returned 1 exi...