Home
last modified time | relevance | path

Searched refs:MD5_CBLOCK (Results 1 – 7 of 7) sorted by relevance

/netbsd/src/crypto/external/bsd/openssl/dist/crypto/evp/
De_rc4_hmac_md5.c83 md5_off = MD5_CBLOCK - key->md.num, blocks; in rc4_hmac_md5_cipher()
97 md5_off += MD5_CBLOCK; in rc4_hmac_md5_cipher()
99 if (plen > md5_off && (blocks = (plen - md5_off) / MD5_CBLOCK) && in rc4_hmac_md5_cipher()
106 blocks *= MD5_CBLOCK; in rc4_hmac_md5_cipher()
139 rc4_off += 2 * MD5_CBLOCK; in rc4_hmac_md5_cipher()
141 rc4_off += MD5_CBLOCK; in rc4_hmac_md5_cipher()
143 if (len > rc4_off && (blocks = (len - rc4_off) / MD5_CBLOCK) && in rc4_hmac_md5_cipher()
150 blocks *= MD5_CBLOCK; in rc4_hmac_md5_cipher()
Dlegacy_md5.c28 LEGACY_EVP_MD_METH_TABLE(md5_init, md5_update, md5_final, NULL, MD5_CBLOCK)
/netbsd/src/external/bsd/libbind/dist/dst/
Dmd5_dgst.c123 if ((c->num+len) >= (size_t)MD5_CBLOCK)
133 len-=(MD5_CBLOCK-c->num);
171 while (len >= (size_t)MD5_CBLOCK)
174 memcpy(p,data,MD5_CBLOCK);
175 data+=MD5_CBLOCK;
197 len-=MD5_CBLOCK;
Dmd5.h70 #define MD5_CBLOCK 64 macro
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/md5/
Dmd5_local.h32 #define HASH_CBLOCK MD5_CBLOCK
/netbsd/src/external/apache2/mDNSResponder/dist/mDNSCore/
DDNSDigest.c187 #define MD5_CBLOCK 64 macro
188 #define MD5_LBLOCK (MD5_CBLOCK/4)
241 #define HASH_CBLOCK MD5_CBLOCK
/netbsd/src/crypto/external/bsd/openssl/dist/engines/
De_ossltest.c76 || !EVP_MD_meth_set_input_blocksize(md, MD5_CBLOCK) in digest_md5()