Lines Matching defs:hmacctx
35 struct lws_genhmac_ctx hmacctx;
119 if (lws_genhmac_init(&hmacctx, jwe->jose.enc_alg->hmac_type,
137 if (lws_genhmac_update(&hmacctx, aad, (unsigned int)aad_len) ||
138 lws_genhmac_update(&hmacctx, jwe->jws.map.buf[LJWE_IV],
141 lws_genhmac_update(&hmacctx,
144 lws_genhmac_update(&hmacctx, al, 8)) {
146 lws_genhmac_destroy(&hmacctx, NULL);
150 if (lws_genhmac_destroy(&hmacctx, digest)) {
168 struct lws_genhmac_ctx hmacctx;
203 if (lws_genhmac_init(&hmacctx, jwe->jose.enc_alg->hmac_type, enc_cek,
209 if (lws_genhmac_update(&hmacctx, aad, (unsigned int)aad_len) ||
210 lws_genhmac_update(&hmacctx, (uint8_t *)jwe->jws.map.buf[LJWE_IV],
212 lws_genhmac_update(&hmacctx, (uint8_t *)jwe->jws.map.buf[LJWE_CTXT],
214 lws_genhmac_update(&hmacctx, al, 8)) {
216 lws_genhmac_destroy(&hmacctx, NULL);
220 if (lws_genhmac_destroy(&hmacctx, digest)) {