Home
last modified time | relevance | path

Searched refs:mdbuf (Results 1 – 3 of 3) sorted by relevance

/NextBSD/crypto/openssh/
HDauth-rsa.c94 u_char buf[32], mdbuf[16]; in auth_rsa_verify_response() local
115 ssh_digest_final(md, mdbuf, sizeof(mdbuf)) < 0) in auth_rsa_verify_response()
120 if (timingsafe_bcmp(response, mdbuf, 16) != 0) { in auth_rsa_verify_response()
HDssh-agent.c265 u_char buf[32], mdbuf[16], session_id[16]; in process_authentication_challenge1() local
310 ssh_digest_final(md, mdbuf, sizeof(mdbuf)) < 0) in process_authentication_challenge1()
317 buffer_put_char(&msg, mdbuf[i]); in process_authentication_challenge1()
/NextBSD/crypto/openssl/doc/crypto/
HDBIO_f_md.pod116 unsigned char mdbuf[EVP_MAX_MD_SIZE];
126 mdlen = BIO_gets(mdtmp, mdbuf, EVP_MAX_MD_SIZE);
127 for(i = 0; i < mdlen; i++) printf(":%02X", mdbuf[i]);