Searched refs:kZeroIV (Results 1 – 1 of 1) sorted by relevance
/external/boringssl/src/crypto/cmac/ |
D | cmac.c | 172 static const uint8_t kZeroIV[AES_BLOCK_SIZE] = {0}; variable 181 !EVP_EncryptInit_ex(&ctx->cipher_ctx, cipher, NULL, key, kZeroIV) || in CMAC_Init() 182 !EVP_Cipher(&ctx->cipher_ctx, scratch, kZeroIV, block_size) || in CMAC_Init() 184 !EVP_EncryptInit_ex(&ctx->cipher_ctx, NULL, NULL, NULL, kZeroIV)) { in CMAC_Init() 202 return EVP_EncryptInit_ex(&ctx->cipher_ctx, NULL, NULL, NULL, kZeroIV); in CMAC_Reset()
|