Searched refs:SIGBLOB_LEN (Results 1 - 1 of 1) sorted by relevance

/external/openssh/
H A Dssh-dss.c47 #define SIGBLOB_LEN (2*INTBLOB_LEN) macro
54 u_char digest[SSH_DIGEST_MAX_LENGTH], sigblob[SIGBLOB_LEN];
85 explicit_bzero(sigblob, SIGBLOB_LEN);
86 BN_bn2bin(sig->r, sigblob + SIGBLOB_LEN - INTBLOB_LEN - rlen);
87 BN_bn2bin(sig->s, sigblob + SIGBLOB_LEN - slen);
91 if ((*sigp = malloc(SIGBLOB_LEN)) == NULL) {
95 memcpy(*sigp, sigblob, SIGBLOB_LEN);
98 *lenp = SIGBLOB_LEN;
107 (ret = sshbuf_put_string(b, sigblob, SIGBLOB_LEN)) != 0)
173 if (len != SIGBLOB_LEN) {
[all...]

Completed in 103 milliseconds