Lines Matching defs:Qr
1543 struct crypto_ec_point *Qr = NULL, *Pr = NULL;
1548 /* Qr = H([MAC-Responder |] [identifier |] code) * Pr */
1583 Qr = crypto_ec_point_init(ec);
1585 if (!Pr || !Qr || !hash_bn || crypto_ec_point_mul(ec, Pr, hash_bn, Qr))
1588 if (crypto_ec_point_is_at_infinity(ec, Qr)) {
1589 wpa_printf(MSG_INFO, "DPP: Qr is the point-at-infinity");
1592 crypto_ec_point_debug_print(ec, Qr, "DPP: Qr");
1598 if (ret_ec && Qr)
1602 return Qr;
1604 crypto_ec_point_deinit(Qr, 1);
1605 Qr = NULL;