Symbol: CMAC_CTX
crypto/openssl/crypto/cmac/cmac.c
111
int ossl_cmac_init(CMAC_CTX *ctx, const void *key, size_t keylen,
crypto/openssl/crypto/cmac/cmac.c
173
int CMAC_Init(CMAC_CTX *ctx, const void *key, size_t keylen,
crypto/openssl/crypto/cmac/cmac.c
179
int CMAC_Update(CMAC_CTX *ctx, const void *in, size_t dlen)
crypto/openssl/crypto/cmac/cmac.c
247
int CMAC_Final(CMAC_CTX *ctx, unsigned char *out, size_t *poutlen)
crypto/openssl/crypto/cmac/cmac.c
278
int CMAC_resume(CMAC_CTX *ctx)
crypto/openssl/crypto/cmac/cmac.c
54
CMAC_CTX *CMAC_CTX_new(void)
crypto/openssl/crypto/cmac/cmac.c
56
CMAC_CTX *ctx;
crypto/openssl/crypto/cmac/cmac.c
69
void CMAC_CTX_cleanup(CMAC_CTX *ctx)
crypto/openssl/crypto/cmac/cmac.c
79
EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(CMAC_CTX *ctx)
crypto/openssl/crypto/cmac/cmac.c
84
void CMAC_CTX_free(CMAC_CTX *ctx)
crypto/openssl/crypto/cmac/cmac.c
93
int CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in)
crypto/openssl/include/crypto/cmac.h
18
int ossl_cmac_init(CMAC_CTX *ctx, const void *key, size_t keylen,
crypto/openssl/include/openssl/cmac.h
32
OSSL_DEPRECATEDIN_3_0 CMAC_CTX *CMAC_CTX_new(void);
crypto/openssl/include/openssl/cmac.h
33
OSSL_DEPRECATEDIN_3_0 void CMAC_CTX_cleanup(CMAC_CTX *ctx);
crypto/openssl/include/openssl/cmac.h
34
OSSL_DEPRECATEDIN_3_0 void CMAC_CTX_free(CMAC_CTX *ctx);
crypto/openssl/include/openssl/cmac.h
35
OSSL_DEPRECATEDIN_3_0 EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(CMAC_CTX *ctx);
crypto/openssl/include/openssl/cmac.h
36
OSSL_DEPRECATEDIN_3_0 int CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in);
crypto/openssl/include/openssl/cmac.h
37
OSSL_DEPRECATEDIN_3_0 int CMAC_Init(CMAC_CTX *ctx,
crypto/openssl/include/openssl/cmac.h
40
OSSL_DEPRECATEDIN_3_0 int CMAC_Update(CMAC_CTX *ctx,
crypto/openssl/include/openssl/cmac.h
42
OSSL_DEPRECATEDIN_3_0 int CMAC_Final(CMAC_CTX *ctx,
crypto/openssl/include/openssl/cmac.h
44
OSSL_DEPRECATEDIN_3_0 int CMAC_resume(CMAC_CTX *ctx);
crypto/openssl/providers/implementations/macs/cmac_prov.c
51
CMAC_CTX *ctx;
crypto/openssl/test/cmactest.c
115
CMAC_CTX *ctx = NULL;
crypto/openssl/test/cmactest.c
145
CMAC_CTX *ctx = NULL;
crypto/openssl/test/cmactest.c
275
CMAC_CTX *ctx = NULL, *ctx2 = NULL;