Lines Matching defs:group
131 int ossl_ffc_named_group_get_uid(const DH_NAMED_GROUP *group)
133 if (group == NULL)
135 return group->uid;
138 const char *ossl_ffc_named_group_get_name(const DH_NAMED_GROUP *group)
140 if (group == NULL)
142 return group->name;
146 int ossl_ffc_named_group_get_keylength(const DH_NAMED_GROUP *group)
148 if (group == NULL)
150 return group->keylength;
153 const BIGNUM *ossl_ffc_named_group_get_q(const DH_NAMED_GROUP *group)
155 if (group == NULL)
157 return group->q;
160 int ossl_ffc_named_group_set(FFC_PARAMS *ffc, const DH_NAMED_GROUP *group)
162 if (ffc == NULL || group == NULL)
165 ossl_ffc_params_set0_pqg(ffc, (BIGNUM *)group->p, (BIGNUM *)group->q,
166 (BIGNUM *)group->g);
167 ffc->keylength = group->keylength;