Home | History | Annotate | Download | only in util

Lines Matching defs:xbar

1524  * pairs (xbar[j], xhat[j]) (j = 1...n) of private client keys are used
1530 * keys xbar[j] and xhat[j] for each client j. The partial decryption
1544 * gbar, ghat) and Alice has the client values (p, xbar, xhat).
1551 * the partial decryption keys gbar^k, ghat^k, xbar and xhat. She then
1569 BIGNUM *xbar[MVMAX], *xhat[MVMAX]; /* private keys vector */
1788 * Make private client keys (xbar[j], xhat[j]) for all j. Note
1797 xbar[j] = BN_new(); xhat[j] = BN_new();
1801 BN_zero(xbar[j]);
1808 BN_add(xbar[j], xbar[j], u);
1810 BN_mod_mul(xbar[j], xbar[j], b1, q, ctx);
1844 * parameters xbar[j] and xhat[j]. All of these parameters are
1846 * password. The p, xbar[j] and xhat[j] paremeters are
1913 * priv_key xbar[j] mod q
1922 DSA_set0_key(sdsa, BN_dup(xhat[j]), BN_dup(xbar[j]));
1932 * The product (gbar^k)^xbar[j] (ghat^k)^xhat[j] and E
1938 BN_mod_exp(u, ghat, xbar[j], p, ctx);
1956 BN_free(x[j]); BN_free(xbar[j]); BN_free(xhat[j]);