Lines Matching defs:ctx
25 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, in HMAC_Init_ex()
102 int HMAC_Init(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md) in HMAC_Init()
110 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, size_t len) in HMAC_Update()
117 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len) in HMAC_Final()
138 size_t HMAC_size(const HMAC_CTX *ctx) in HMAC_size()
147 HMAC_CTX *ctx = OPENSSL_zalloc(sizeof(HMAC_CTX)); in HMAC_CTX_new() local
158 static void hmac_ctx_cleanup(HMAC_CTX *ctx) in hmac_ctx_cleanup()
166 void HMAC_CTX_free(HMAC_CTX *ctx) in HMAC_CTX_free()
177 static int hmac_ctx_alloc_mds(HMAC_CTX *ctx) in hmac_ctx_alloc_mds()
194 int HMAC_CTX_reset(HMAC_CTX *ctx) in HMAC_CTX_reset()
240 void HMAC_CTX_set_flags(HMAC_CTX *ctx, unsigned long flags) in HMAC_CTX_set_flags()
247 const EVP_MD *HMAC_CTX_get_md(const HMAC_CTX *ctx) in HMAC_CTX_get_md()