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];
54 os_memset(cbc, 0, AES_BLOCK_SIZE);
67 cbc[i] ^= *pos++;
82 aes_encrypt(ctx, cbc, cbc);
92 cbc[i] ^= *pos++;
105 cbc[left] ^= 0x80;
110 pad[i] ^= cbc[i];
118 * omac1_aes_128_vector - One-Key CBC MAC (OMAC1) hash with AES-128
138 * omac1_aes_128 - One-Key CBC MAC (OMAC1) hash with AES-128 (aka AES-CMAC)
156 * omac1_aes_256 - One-Key CBC MAC (OMAC1) hash with AES-256 (aka AES-CMAC)