Lines Matching refs:ffc
161 static int ffc_params_to_text(BIO *out, const FFC_PARAMS *ffc) in ffc_params_to_text() argument
163 if (ffc->nid != NID_undef) { in ffc_params_to_text()
165 const DH_NAMED_GROUP *group = ossl_ffc_uid_to_dh_named_group(ffc->nid); in ffc_params_to_text()
179 if (!print_labeled_bignum(out, "P: ", ffc->p)) in ffc_params_to_text()
181 if (ffc->q != NULL) { in ffc_params_to_text()
182 if (!print_labeled_bignum(out, "Q: ", ffc->q)) in ffc_params_to_text()
185 if (!print_labeled_bignum(out, "G: ", ffc->g)) in ffc_params_to_text()
187 if (ffc->j != NULL) { in ffc_params_to_text()
188 if (!print_labeled_bignum(out, "J: ", ffc->j)) in ffc_params_to_text()
191 if (ffc->seed != NULL) { in ffc_params_to_text()
192 if (!print_labeled_buf(out, "SEED:", ffc->seed, ffc->seedlen)) in ffc_params_to_text()
195 if (ffc->gindex != -1) { in ffc_params_to_text()
196 if (BIO_printf(out, "gindex: %d\n", ffc->gindex) <= 0) in ffc_params_to_text()
199 if (ffc->pcounter != -1) { in ffc_params_to_text()
200 if (BIO_printf(out, "pcounter: %d\n", ffc->pcounter) <= 0) in ffc_params_to_text()
203 if (ffc->h != 0) { in ffc_params_to_text()
204 if (BIO_printf(out, "h: %d\n", ffc->h) <= 0) in ffc_params_to_text()