search for: sigblob

Displaying 2 results from an estimated 2 matches for "sigblob".

Did you mean: bigblob
2013 May 15
2
Support for "ssh-rsa-sha256" and "ssh-dss-sha256" ?‏
Functionality request for supporting Digital Signatures for RSA and DSS Public Key Algorithms in alignment with NIST SP800-131A. I assume this has been asked before, but I could not find in the archives. Support of "ssh-rsa-sha256" and "ssh-dss-sha256" public key algorithms for OpenSSH? I know Suite B Algorithms and x509 SSH Extension Algorithms are supported, but not a
2003 Oct 08
4
OS/390 openssh
...orig/ssh-dss.c openssh-3.7.1p2/ssh-dss.c --- openssh-3.7.1p2.orig/ssh-dss.c Mon Feb 24 02:01:41 2003 +++ openssh-3.7.1p2/ssh-dss.c Tue Oct 7 08:22:02 2003 @@ -88,7 +88,7 @@ /* ietf-drafts */ buffer_init(&b); buffer_put_cstring(&b, "ssh-dss"); - buffer_put_string(&b, sigblob, SIGBLOB_LEN); + buffer_put_binary(&b, sigblob, SIGBLOB_LEN); len = buffer_len(&b); if (lenp != NULL) *lenp = len; @@ -134,7 +134,7 @@ return -1; } xfree(ktype); - sigblob = buffer_get_string(&b, &len); + sigblob = buffer_get_binary(&b, &len); rlen...