Home | History | Annotate | Download | only in crypto

Lines Matching defs:cbc

2  * One-key CBC MAC (OMAC1) hash with AES
30 * omac1_aes_vector - One-Key CBC MAC (OMAC1) hash with AES
47 u8 cbc[AES_BLOCK_SIZE], pad[AES_BLOCK_SIZE];
57 os_memset(cbc, 0, AES_BLOCK_SIZE);
70 cbc[i] ^= *pos++;
85 aes_encrypt(ctx, cbc, cbc);
95 cbc[i] ^= *pos++;
108 cbc[left] ^= 0x80;
113 pad[i] ^= cbc[i];
121 * omac1_aes_128_vector - One-Key CBC MAC (OMAC1) hash with AES-128
141 * omac1_aes_128 - One-Key CBC MAC (OMAC1) hash with AES-128 (aka AES-CMAC)
159 * omac1_aes_256 - One-Key CBC MAC (OMAC1) hash with AES-256 (aka AES-CMAC)