Lines Matching defs:Qr
354 struct crypto_ec_point *Qi = NULL, *Qr = NULL, *M = NULL, *X = NULL,
501 /* Qr = H([MAC-Responder |] [identifier |] code) * Pr */
502 Qr = dpp_pkex_derive_Qr(curve, v2 ? NULL : own_mac, code, code_len,
504 if (!Qr)
526 /* N = Y + Qr */
534 crypto_ec_point_add(ec, Y, Qr, N) ||
569 crypto_ec_point_deinit(Qr, 1);
706 struct crypto_ec_point *Qr = NULL, *Y = NULL, *N = NULL;
797 /* Qr = H([MAC-Responder |] [identifier |] code) * Pr */
798 Qr = dpp_pkex_derive_Qr(curve, pkex->v2 ? NULL : pkex->peer_mac,
801 if (!Qr)
804 /* Y' = N - Qr */
810 crypto_ec_point_invert(ec, Qr) ||
811 crypto_ec_point_add(ec, N, Qr, Y) ||
894 crypto_ec_point_deinit(Qr, 1);