Lines Matching refs:ffc
158 static int ffc_params_to_text(BIO *out, const FFC_PARAMS *ffc) in ffc_params_to_text() argument
160 if (ffc->nid != NID_undef) { in ffc_params_to_text()
162 const DH_NAMED_GROUP *group = ossl_ffc_uid_to_dh_named_group(ffc->nid); in ffc_params_to_text()
176 if (!print_labeled_bignum(out, "P: ", ffc->p)) in ffc_params_to_text()
178 if (ffc->q != NULL) { in ffc_params_to_text()
179 if (!print_labeled_bignum(out, "Q: ", ffc->q)) in ffc_params_to_text()
182 if (!print_labeled_bignum(out, "G: ", ffc->g)) in ffc_params_to_text()
184 if (ffc->j != NULL) { in ffc_params_to_text()
185 if (!print_labeled_bignum(out, "J: ", ffc->j)) in ffc_params_to_text()
188 if (ffc->seed != NULL) { in ffc_params_to_text()
189 if (!print_labeled_buf(out, "SEED:", ffc->seed, ffc->seedlen)) in ffc_params_to_text()
192 if (ffc->gindex != -1) { in ffc_params_to_text()
193 if (BIO_printf(out, "gindex: %d\n", ffc->gindex) <= 0) in ffc_params_to_text()
196 if (ffc->pcounter != -1) { in ffc_params_to_text()
197 if (BIO_printf(out, "pcounter: %d\n", ffc->pcounter) <= 0) in ffc_params_to_text()
200 if (ffc->h != 0) { in ffc_params_to_text()
201 if (BIO_printf(out, "h: %d\n", ffc->h) <= 0) in ffc_params_to_text()