Home | History | Annotate | Download | only in openssh

Lines Matching defs:nq

2882 	EC_POINT *nq = NULL;
2921 /* nQ == infinity (n == order of subgroup) */
2922 if ((nq = EC_POINT_new(group)) == NULL) {
2926 if (EC_POINT_mul(group, nq, NULL, public, order, bnctx) != 1) {
2930 if (EC_POINT_is_at_infinity(group, nq) != 1)
2943 if (nq != NULL)
2944 EC_POINT_free(nq);