Lines Matching refs:cipherlen

381 	size_t cipherlen;  in encrypt_size()  local
385 cipherlen = (size_t)P2ROUNDUP(null_hash.hash_len + in encrypt_size()
389 cipherlen = (size_t)P2ROUNDUP(md5_hash.hash_len + in encrypt_size()
394 cipherlen = (size_t)P2ROUNDUP(crc32_hash.hash_len + in encrypt_size()
399 cipherlen = (size_t)P2ROUNDUP(sha1_hash.confound_len + in encrypt_size()
404 cipherlen = (size_t)P2ROUNDUP(md5_hash.confound_len + in encrypt_size()
410 cipherlen = DEFAULT_AES_BLOCKLEN + plainlen + in encrypt_size()
415 cipherlen = plainlen; in encrypt_size()
419 return (cipherlen); in encrypt_size()
1661 size_t cipherlen; in aes_encrypt() local
1667 cipherlen = encrypt_size(&tmi->enc_data, inlen); in aes_encrypt()
1669 ASSERT(MBLKSIZE(mp) >= cipherlen); in aes_encrypt()
1709 mp->b_wptr = mp->b_rptr + cipherlen; in aes_encrypt()
1752 size_t cipherlen; in arcfour_hmac_md5_decrypt() local
1787 cipherlen = inlen - hash->hash_len; in arcfour_hmac_md5_decrypt()
1789 ASSERT(MBLKSIZE(mp) >= cipherlen); in arcfour_hmac_md5_decrypt()
1905 v1.iov_len = cipherlen; in arcfour_hmac_md5_decrypt()
1909 indata.cd_length = cipherlen; in arcfour_hmac_md5_decrypt()
1931 (char *)mp->b_rptr + hash->hash_len, cipherlen, in arcfour_hmac_md5_decrypt()
1985 size_t cipherlen; in arcfour_hmac_md5_encrypt() local
2019 cipherlen = encrypt_size(&tmi->enc_data, inlen); in arcfour_hmac_md5_encrypt()
2021 ASSERT(MBLKSIZE(mp) >= cipherlen); in arcfour_hmac_md5_encrypt()
2032 if (cipherlen > inlen) { in arcfour_hmac_md5_encrypt()
2241 size_t cipherlen; in des_cbc_encrypt() local
2257 cipherlen = encrypt_size(&tmi->enc_data, inlen); in des_cbc_encrypt()
2259 ASSERT(MBLKSIZE(mp) >= cipherlen); in des_cbc_encrypt()
2261 if (cipherlen > inlen) { in des_cbc_encrypt()
2293 cipherlen); in des_cbc_encrypt()
2326 plainlen = cipherlen - hash->hash_len; in des_cbc_encrypt()
2335 ASSERT(mp->b_rptr + cipherlen <= DB_LIM(mp)); in des_cbc_encrypt()
2336 mp->b_wptr = mp->b_rptr + cipherlen; in des_cbc_encrypt()
2338 CRYPTO_DATA_MBLK, (size_t)cipherlen, in des_cbc_encrypt()
2347 cipherlen, result); in des_cbc_encrypt()
2366 mp->b_wptr = mp->b_rptr + cipherlen; in des_cbc_encrypt()
2967 size_t cipherlen; in encrypt_block() local
2979 cipherlen = encrypt_size(&tmi->enc_data, (size_t)ptlen); in encrypt_block()
3001 if ((cipherlen + extra >= MBLKSIZE(mp)) || DB_REF(mp) > 1) { in encrypt_block()
3002 int sz = P2ROUNDUP(cipherlen+extra, 8); in encrypt_block()
3044 if ((cbp->b_rptr + P2ROUNDUP(cipherlen + extra, 8) > in encrypt_block()