OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CMAC_Update
(Results
1 - 4
of
4
) sorted by null
/external/boringssl/src/include/openssl/
cmac.h
63
/*
CMAC_Update
processes |in_len| bytes of message from |in|. It returns one on
65
OPENSSL_EXPORT int
CMAC_Update
(CMAC_CTX *ctx, const uint8_t *in, size_t in_len);
/external/boringssl/src/crypto/cmac/
cmac.c
101
CMAC_Update
(&ctx, in, in_len) &&
170
int
CMAC_Update
(CMAC_CTX *ctx, const uint8_t *in, size_t in_len) {
cmac_test.cc
64
if (!
CMAC_Update
(ctx.get(), msg + done, todo)) {
65
fprintf(stderr, "%s/%u:
CMAC_Update
failed.\n", name, chunk_size);
/external/wpa_supplicant_8/src/crypto/
crypto_openssl.c
895
if (!
CMAC_Update
(ctx, addr[i], len[i]))
Completed in 423 milliseconds