Home | History | Annotate | Download | only in openssh

Lines Matching refs:siglen

215  * On success, 0 is returned and *siglen bytes of signature are returned in
221 u_char **sig, u_int *siglen)
235 *siglen = buffer_len(&b);
236 *sig = xmalloc(*siglen);
237 memcpy(*sig, buffer_ptr(&b), *siglen);
350 * Verify Schnorr signature 'sig' of length 'siglen' against public exponent
360 const u_char *sig, u_int siglen)
376 buffer_append(&b, sig, siglen);
586 u_int siglen;
597 &sig, &siglen))
600 sig, siglen) != 1)
603 sig, siglen) != 0)
607 sig, siglen) != 0)