Lines Matching refs:ctx
51 * @param ctx The context to free, may be NULL
53 void av_hmac_free(AVHMAC *ctx);
57 * @param ctx The HMAC context
61 void av_hmac_init(AVHMAC *ctx, const uint8_t *key, unsigned int keylen);
65 * @param ctx The HMAC context
69 void av_hmac_update(AVHMAC *ctx, const uint8_t *data, unsigned int len);
73 * @param ctx The HMAC context
78 int av_hmac_final(AVHMAC *ctx, uint8_t *out, unsigned int outlen);
82 * @param ctx The HMAC context
91 int av_hmac_calc(AVHMAC *ctx, const uint8_t *data, unsigned int len,