Home
last modified time | relevance | path

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

/netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
H A Dcipher_rc4_hmac_md5_hw.c58 size_t md5_off = MD5_CBLOCK - ctx->md.num, blocks; in cipher_hw_rc4_hmac_md5_cipher()
72 md5_off += MD5_CBLOCK; in cipher_hw_rc4_hmac_md5_cipher()
75 && (blocks = (plen - md5_off) / MD5_CBLOCK) in cipher_hw_rc4_hmac_md5_cipher()
82 blocks *= MD5_CBLOCK; in cipher_hw_rc4_hmac_md5_cipher()
116 rc4_off += 2 * MD5_CBLOCK; in cipher_hw_rc4_hmac_md5_cipher()
118 rc4_off += MD5_CBLOCK; in cipher_hw_rc4_hmac_md5_cipher()
121 && (blocks = (len - rc4_off) / MD5_CBLOCK) in cipher_hw_rc4_hmac_md5_cipher()
128 blocks *= MD5_CBLOCK; in cipher_hw_rc4_hmac_md5_cipher()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/evp/
H A De_rc4_hmac_md5.c72 md5_off = MD5_CBLOCK - key->md.num, blocks; in rc4_hmac_md5_cipher()
87 md5_off += MD5_CBLOCK; in rc4_hmac_md5_cipher()
89 if (plen > md5_off && (blocks = (plen - md5_off) / MD5_CBLOCK) && in rc4_hmac_md5_cipher()
96 blocks *= MD5_CBLOCK; in rc4_hmac_md5_cipher()
129 rc4_off += 2 * MD5_CBLOCK; in rc4_hmac_md5_cipher()
131 rc4_off += MD5_CBLOCK; in rc4_hmac_md5_cipher()
133 if (len > rc4_off && (blocks = (len - rc4_off) / MD5_CBLOCK) && in rc4_hmac_md5_cipher()
140 blocks *= MD5_CBLOCK; in rc4_hmac_md5_cipher()
H A Dm_md5.c47 MD5_CBLOCK,
H A Dm_md5_sha1.c133 MD5_CBLOCK,
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/evp/
H A 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()
H A Dlegacy_md5.c28 LEGACY_EVP_MD_METH_TABLE(md5_init, md5_update, md5_final, NULL, MD5_CBLOCK)
/netbsd-src/external/bsd/libbind/dist/dst/
H A 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;
H A Dmd5.h70 #define MD5_CBLOCK 64 macro
/netbsd-src/crypto/external/bsd/openssl.old/dist/include/openssl/
H A Dmd5.h29 # define MD5_CBLOCK 64 macro
30 # define MD5_LBLOCK (MD5_CBLOCK/4)
/netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/
H A Dmd5.h38 # define MD5_CBLOCK 64 macro
39 # define MD5_LBLOCK (MD5_CBLOCK/4)
/netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/digests/
H A Dmd5_prov.c23 MD5_CBLOCK, MD5_DIGEST_LENGTH, 0,
/netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/include/prov/
H A Dmd5_sha1.h22 # define MD5_SHA1_CBLOCK MD5_CBLOCK
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/md5/
H A Dmd5_local.h32 #define HASH_CBLOCK MD5_CBLOCK
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/md5/
H A Dmd5_local.h32 #define HASH_CBLOCK MD5_CBLOCK
/netbsd-src/crypto/external/bsd/openssl.old/dist/engines/
H A De_ossltest.c62 || !EVP_MD_meth_set_input_blocksize(md, MD5_CBLOCK) in digest_md5()
/netbsd-src/crypto/external/bsd/openssl/dist/engines/
H A De_ossltest.c76 || !EVP_MD_meth_set_input_blocksize(md, MD5_CBLOCK) in digest_md5()