Home | History | Annotate | Download | only in ssl

Lines Matching defs:hmac_ctx

3047   bssl::ScopedHMAC_CTX hmac_ctx;
3062 hmac_ctx.get(), 0 /* decrypt */);
3076 if (!HMAC_Init_ex(hmac_ctx.get(), ssl_ctx->tlsext_tick_hmac_key,
3088 size_t mac_len = HMAC_size(hmac_ctx.get());
3093 HMAC_Update(hmac_ctx.get(), ticket, ticket_len - mac_len);
3094 HMAC_Final(hmac_ctx.get(), mac, NULL);