OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CMAC_CTX
(Results
1 - 5
of
5
) sorted by null
/external/openssl/crypto/cmac/
cmac.h
65
typedef struct CMAC_CTX_st
CMAC_CTX
;
67
CMAC_CTX
*CMAC_CTX_new(void);
68
void CMAC_CTX_cleanup(
CMAC_CTX
*ctx);
69
void CMAC_CTX_free(
CMAC_CTX
*ctx);
70
EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(
CMAC_CTX
*ctx);
71
int CMAC_CTX_copy(
CMAC_CTX
*out, const
CMAC_CTX
*in);
73
int CMAC_Init(
CMAC_CTX
*ctx, const void *key, size_t keylen,
75
int CMAC_Update(
CMAC_CTX
*ctx, const void *data, size_t dlen);
76
int CMAC_Final(
CMAC_CTX
*ctx, unsigned char *out, size_t *poutlen)
[
all
...]
cm_ameth.c
71
CMAC_CTX
*cmctx = (
CMAC_CTX
*)pkey->pkey.ptr;
cmac.c
97
CMAC_CTX
*CMAC_CTX_new(void)
99
CMAC_CTX
*ctx;
100
ctx = OPENSSL_malloc(sizeof(
CMAC_CTX
));
108
void CMAC_CTX_cleanup(
CMAC_CTX
*ctx)
125
EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(
CMAC_CTX
*ctx)
130
void CMAC_CTX_free(
CMAC_CTX
*ctx)
136
int CMAC_CTX_copy(
CMAC_CTX
*out, const
CMAC_CTX
*in)
152
int CMAC_Init(
CMAC_CTX
*ctx, const void *key, size_t keylen,
215
int CMAC_Update(
CMAC_CTX
*ctx, const void *in, size_t dlen
[
all
...]
cm_pmeth.c
61
/* The context structure and "key" is simply a
CMAC_CTX
*/
88
CMAC_CTX
*cmkey = CMAC_CTX_new();
89
CMAC_CTX
*cmctx = ctx->data;
124
CMAC_CTX
*cmctx = ctx->data;
142
(
CMAC_CTX
*)ctx->pkey->pkey.ptr))
/external/openssl/include/openssl/
cmac.h
65
typedef struct CMAC_CTX_st
CMAC_CTX
;
67
CMAC_CTX
*CMAC_CTX_new(void);
68
void CMAC_CTX_cleanup(
CMAC_CTX
*ctx);
69
void CMAC_CTX_free(
CMAC_CTX
*ctx);
70
EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(
CMAC_CTX
*ctx);
71
int CMAC_CTX_copy(
CMAC_CTX
*out, const
CMAC_CTX
*in);
73
int CMAC_Init(
CMAC_CTX
*ctx, const void *key, size_t keylen,
75
int CMAC_Update(
CMAC_CTX
*ctx, const void *data, size_t dlen);
76
int CMAC_Final(
CMAC_CTX
*ctx, unsigned char *out, size_t *poutlen)
[
all
...]
Completed in 289 milliseconds