search for: dsa_new

Displaying 3 results from an estimated 3 matches for "dsa_new".

Did you mean: rsa_new
2017 Sep 22
2
Call for testing: OpenSSH 7.6
...-1425,8 +1428,10 @@ dsa_generate_private_key(u_int bits, DSA **dsap) if (dsap == NULL) return SSH_ERR_INVALID_ARGUMENT; - if (bits != 1024) + if (bits != 1024) { + fprintf(stderr, "%s bits %d expected %d\n", __func__, bits, 1024); return SSH_ERR_KEY_LENGTH; + } if ((private = DSA_new()) == NULL) { ret = SSH_ERR_ALLOC_FAIL; goto out; @@ -1505,8 +1510,10 @@ ecdsa_generate_private_key(u_int bits, int *nid, EC_KEY **ecdsap) if (nid == NULL || ecdsap == NULL) return SSH_ERR_INVALID_ARGUMENT; - if ((*nid = sshkey_ecdsa_bits_to_nid(bits)) == -1) + if ((*nid = sshkey_ecdsa...
2001 Jul 24
4
Debugging ssh-keygen dsa on Solaris8
...2.6. Reading ssh-keygen core file header read successfully Reading ld.so.1 Reading libsocket.so.1 Reading libnsl.so.1 Reading libgen.so.1 Reading libc.so.1 Reading libdl.so.1 Reading libmp.so.2 Reading libc_psr.so.1 program terminated by signal BUS (invalid address alignment) Current function is DSA_new_method (optimized) 127 ret->flags=ret->meth->flags; (/opt/SUNWspro/bin/../WS6U2/bin/sparcv9/dbx) where =>[1] DSA_new_method(meth = ???) (optimized), at 0x4b6b8 (line ~127) in "dsa_lib.c" [2] DSA_new() (optimized), at 0x4b580 (line ~86) in &quo...
2017 Sep 21
19
Call for testing: OpenSSH 7.6
Hi, OpenSSH 7.6p1 is almost ready for release, so we would appreciate testing on as many platforms and systems as possible. This is a bugfix release. 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 also available via git using the instructions at