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