Home
last modified time | relevance | path

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

/crypto/
Dcmac.c61 u64 _const[2]; in crypto_cmac_digest_setkey() local
76 _const[0] = be64_to_cpu(consts[1]); in crypto_cmac_digest_setkey()
77 _const[1] = be64_to_cpu(consts[0]); in crypto_cmac_digest_setkey()
81 msb_mask = ((s64)_const[1] >> 63) & gfmask; in crypto_cmac_digest_setkey()
82 _const[1] = (_const[1] << 1) | (_const[0] >> 63); in crypto_cmac_digest_setkey()
83 _const[0] = (_const[0] << 1) ^ msb_mask; in crypto_cmac_digest_setkey()
85 consts[i + 0] = cpu_to_be64(_const[1]); in crypto_cmac_digest_setkey()
86 consts[i + 1] = cpu_to_be64(_const[0]); in crypto_cmac_digest_setkey()
92 _const[0] = be64_to_cpu(consts[0]); in crypto_cmac_digest_setkey()
96 msb_mask = ((s64)_const[0] >> 63) & gfmask; in crypto_cmac_digest_setkey()
[all …]