OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CMAC_Init
(Results
1 - 4
of
4
) sorted by null
/external/boringssl/src/include/openssl/
cmac.h
49
/*
CMAC_Init
configures |ctx| to use the given |key| and |cipher|. The CMAC RFC
56
OPENSSL_EXPORT int
CMAC_Init
(CMAC_CTX *ctx, const void *key, size_t key_len,
/external/boringssl/src/crypto/cmac/
cmac.c
100
const int ok =
CMAC_Init
(&ctx, key, key_len, cipher, NULL /* engine */) &&
145
int
CMAC_Init
(CMAC_CTX *ctx, const void *key, size_t key_len,
cmac_test.cc
47
if (!
CMAC_Init
(ctx.get(), key, key_len, EVP_aes_128_cbc(), NULL)) {
48
fprintf(stderr, "%s:
CMAC_Init
failed.\n", name);
/external/wpa_supplicant_8/src/crypto/
crypto_openssl.c
957
if (!
CMAC_Init
(ctx, key, 32, EVP_aes_256_cbc(), NULL))
960
if (!
CMAC_Init
(ctx, key, 16, EVP_aes_128_cbc(), NULL))
Completed in 156 milliseconds