Symbol: CMAC_CTX
crypto/libressl/crypto/cmac/cm_ameth.c
76
CMAC_CTX *cmctx = (CMAC_CTX *)pkey->pkey.ptr;
crypto/libressl/crypto/cmac/cm_pmeth.c
135
CMAC_CTX *cmctx = ctx->data;
crypto/libressl/crypto/cmac/cm_pmeth.c
152
(CMAC_CTX *)ctx->pkey->pkey.ptr))
crypto/libressl/crypto/cmac/cm_pmeth.c
95
CMAC_CTX *cmkey = CMAC_CTX_new();
crypto/libressl/crypto/cmac/cm_pmeth.c
96
CMAC_CTX *cmctx = ctx->data;
crypto/libressl/crypto/cmac/cmac.c
100
ctx = malloc(sizeof(CMAC_CTX));
crypto/libressl/crypto/cmac/cmac.c
109
CMAC_CTX_cleanup(CMAC_CTX *ctx)
crypto/libressl/crypto/cmac/cmac.c
120
CMAC_CTX_get0_cipher_ctx(CMAC_CTX *ctx)
crypto/libressl/crypto/cmac/cmac.c
126
CMAC_CTX_free(CMAC_CTX *ctx)
crypto/libressl/crypto/cmac/cmac.c
136
CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in)
crypto/libressl/crypto/cmac/cmac.c
154
CMAC_Init(CMAC_CTX *ctx, const void *key, size_t keylen,
crypto/libressl/crypto/cmac/cmac.c
200
CMAC_Update(CMAC_CTX *ctx, const void *in, size_t dlen)
crypto/libressl/crypto/cmac/cmac.c
242
CMAC_Final(CMAC_CTX *ctx, unsigned char *out, size_t *poutlen)
crypto/libressl/crypto/cmac/cmac.c
272
CMAC_resume(CMAC_CTX *ctx)
crypto/libressl/crypto/cmac/cmac.c
95
CMAC_CTX *
crypto/libressl/crypto/cmac/cmac.c
98
CMAC_CTX *ctx;
crypto/libressl/crypto/evp/p_lib.c
286
CMAC_CTX *cmctx = NULL;
crypto/libressl/include/openssl/cmac.h
67
CMAC_CTX *CMAC_CTX_new(void);
crypto/libressl/include/openssl/cmac.h
68
void CMAC_CTX_cleanup(CMAC_CTX *ctx);
crypto/libressl/include/openssl/cmac.h
69
void CMAC_CTX_free(CMAC_CTX *ctx);
crypto/libressl/include/openssl/cmac.h
70
EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(CMAC_CTX *ctx);
crypto/libressl/include/openssl/cmac.h
71
int CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in);
crypto/libressl/include/openssl/cmac.h
73
int CMAC_Init(CMAC_CTX *ctx, const void *key, size_t keylen,
crypto/libressl/include/openssl/cmac.h
75
int CMAC_Update(CMAC_CTX *ctx, const void *data, size_t dlen);
crypto/libressl/include/openssl/cmac.h
76
int CMAC_Final(CMAC_CTX *ctx, unsigned char *out, size_t *poutlen);
crypto/libressl/include/openssl/cmac.h
77
int CMAC_resume(CMAC_CTX *ctx);