Searched refs:gx_q (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.2-release/crypto/openssh/
H A Dschnorr.c265 BIGNUM *h = NULL, *g_xh = NULL, *g_r = NULL, *gx_q = NULL; local
288 (gx_q = BN_new()) == NULL ||
297 /* gx_q = (g^x)^q must === 1 mod p */
298 if (BN_mod_exp(gx_q, g_x, grp_q, grp_p, bn_ctx) == -1) {
302 if (BN_cmp(gx_q, BN_value_one()) != 0) {
342 if (gx_q != NULL)
343 BN_clear_free(gx_q);

Completed in 45 milliseconds