Searched refs:dg (Results 1 – 1 of 1) sorted by relevance
/crypto/ |
D | ccm.c | 844 u8 *dg = (u8 *)ctx + crypto_shash_descsize(pdesc->tfm) - bs; in crypto_cbcmac_digest_init() local 847 memset(dg, 0, bs); in crypto_cbcmac_digest_init() 860 u8 *dg = (u8 *)ctx + crypto_shash_descsize(parent) - bs; in crypto_cbcmac_digest_update() local 865 crypto_xor(dg + ctx->len, p, l); in crypto_cbcmac_digest_update() 871 crypto_cipher_encrypt_one(tfm, dg, dg); in crypto_cbcmac_digest_update() 886 u8 *dg = (u8 *)ctx + crypto_shash_descsize(parent) - bs; in crypto_cbcmac_digest_final() local 889 crypto_cipher_encrypt_one(tfm, dg, dg); in crypto_cbcmac_digest_final() 891 memcpy(out, dg, bs); in crypto_cbcmac_digest_final()
|