Searched refs:ilen (Results 1 – 2 of 2) sorted by relevance
/crypto/ |
D | ccm.c | 179 int ilen, err; in crypto_ccm_auth() local 191 ilen = format_adata(idata, assoclen); in crypto_ccm_auth() 192 sg_set_buf(&sg[1], idata, ilen); in crypto_ccm_auth() 195 ilen = 0; in crypto_ccm_auth() 201 ahash_request_set_crypt(ahreq, sg, NULL, assoclen + ilen + 16); in crypto_ccm_auth() 210 ilen = 16 - (assoclen + ilen) % 16; in crypto_ccm_auth() 211 if (ilen < 16) { in crypto_ccm_auth() 212 memset(idata, 0, ilen); in crypto_ccm_auth() 214 sg_set_buf(&sg[0], idata, ilen); in crypto_ccm_auth() 218 cryptlen += ilen; in crypto_ccm_auth()
|
D | testmgr.c | 3188 int ilen; in test_comp() local 3194 ilen = ctemplate[i].inlen; in test_comp() 3196 ilen, output, &dlen); in test_comp() 3204 ilen = dlen; in test_comp() 3207 ilen, decomp_output, &dlen); in test_comp() 3233 int ilen; in test_comp() local 3238 ilen = dtemplate[i].inlen; in test_comp() 3240 ilen, decomp_output, &dlen); in test_comp() 3298 int ilen = ctemplate[i].inlen; in test_acomp() local 3301 input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL); in test_acomp() [all …]
|