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

/freebsd-9.3-release/crypto/openssh/
H A Dschnorr.c120 * in public exponent g^x, under group defined by 'grp_p', 'grp_q' and 'grp_g'
130 schnorr_sign(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, argument
146 if (BN_cmp(g_x, grp_p) >= 0) {
167 if ((v = bn_rand_range_gt_one(grp_p)) == NULL) {
174 if (BN_mod_exp(g_v, grp_g, v, grp_p, bn_ctx) == -1) {
181 if ((h = schnorr_hash(grp_p, grp_q, grp_g, hash_alg, g_v, g_x,
216 * in public exponent g^x, under group defined by 'grp_p', 'grp_q' and 'grp_g'
224 schnorr_sign_buf(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, argument
231 if (schnorr_sign(grp_p, grp_q, grp_g, SSH_DIGEST_SHA256,
255 * public exponent g_x (g^x) under group defined by 'grp_p', 'grp_
261 schnorr_verify(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, int hash_alg, const BIGNUM *g_x, const u_char *id, u_int idlen, const BIGNUM *r, const BIGNUM *e) argument
362 schnorr_verify_buf(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, const BIGNUM *g_x, const u_char *id, u_int idlen, const u_char *sig, u_int siglen) argument
543 modp_group_from_g_and_safe_p(const char *grp_g, const char *grp_p) argument
578 schnorr_selftest_one(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, const BIGNUM *x) argument
[all...]
/freebsd-9.3-release/lib/libc/gen/
H A Dgetgrent.c460 struct group *grp_p; local
495 grp_p = NULL;
496 rv = _nsdispatch(&grp_p, getgrent_r_dtab, NSDB_GROUP,
499 if (grp_p == NULL && ret_errno == ERANGE) {
513 } while (grp_p == NULL && ret_errno == ERANGE);
520 if (grp_p == NULL)

Completed in 95 milliseconds