/third_party/openssl/crypto/ffc/ |
D | ffc_params.c | 210 int ossl_ffc_params_todata(const FFC_PARAMS *ffc, OSSL_PARAM_BLD *bld, in ossl_ffc_params_todata() argument 215 if (ffc == NULL) in ossl_ffc_params_todata() 218 if (ffc->p != NULL in ossl_ffc_params_todata() 219 && !ossl_param_build_set_bn(bld, params, OSSL_PKEY_PARAM_FFC_P, ffc->p)) in ossl_ffc_params_todata() 221 if (ffc->q != NULL in ossl_ffc_params_todata() 222 && !ossl_param_build_set_bn(bld, params, OSSL_PKEY_PARAM_FFC_Q, ffc->q)) in ossl_ffc_params_todata() 224 if (ffc->g != NULL in ossl_ffc_params_todata() 225 && !ossl_param_build_set_bn(bld, params, OSSL_PKEY_PARAM_FFC_G, ffc->g)) in ossl_ffc_params_todata() 227 if (ffc->j != NULL in ossl_ffc_params_todata() 229 ffc->j)) in ossl_ffc_params_todata() [all …]
|
D | ffc_backend.c | 20 int ossl_ffc_params_fromdata(FFC_PARAMS *ffc, const OSSL_PARAM params[]) in ossl_ffc_params_fromdata() argument 27 if (ffc == NULL) in ossl_ffc_params_fromdata() 42 || !ossl_ffc_named_group_set(ffc, group)) in ossl_ffc_params_fromdata() 60 ffc->gindex = i; in ossl_ffc_params_fromdata() 66 ffc->pcounter = i; in ossl_ffc_params_fromdata() 75 ffc->h = i; in ossl_ffc_params_fromdata() 81 if (!ossl_ffc_params_set_seed(ffc, prm->data, prm->data_size)) in ossl_ffc_params_fromdata() 88 ossl_ffc_params_enable_flags(ffc, FFC_PARAM_FLAG_VALIDATE_PQ, i); in ossl_ffc_params_fromdata() 94 ossl_ffc_params_enable_flags(ffc, FFC_PARAM_FLAG_VALIDATE_G, i); in ossl_ffc_params_fromdata() 100 ossl_ffc_params_enable_flags(ffc, FFC_PARAM_FLAG_VALIDATE_LEGACY, i); in ossl_ffc_params_fromdata() [all …]
|
D | ffc_dh.c | 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() 167 ffc->keylength = group->keylength; in ossl_ffc_named_group_set() 170 ffc->nid = NID_undef; in ossl_ffc_named_group_set()
|
/third_party/openssl/providers/implementations/encode_decode/ |
D | encode_key2text.c | 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() [all …]
|
/third_party/openssl/providers/implementations/keymgmt/ |
D | dsa_kmgmt.c | 555 FFC_PARAMS *ffc; in dsa_gen() local 573 ffc = ossl_dsa_get0_params(dsa); in dsa_gen() 576 && !ossl_ffc_params_copy(ffc, gctx->ffc_params)) in dsa_gen() 580 && !ossl_ffc_params_set_seed(ffc, gctx->seed, gctx->seedlen)) in dsa_gen() 583 ossl_ffc_params_set_gindex(ffc, gctx->gindex); in dsa_gen() 585 ossl_ffc_params_set_pcounter(ffc, gctx->pcounter); in dsa_gen() 587 ossl_ffc_params_set_h(ffc, gctx->hindex); in dsa_gen() 590 if (!ossl_ffc_set_digest(ffc, gctx->mdname, gctx->mdprops)) in dsa_gen() 600 ossl_ffc_params_enable_flags(ffc, FFC_PARAM_FLAG_VALIDATE_LEGACY, in dsa_gen() 603 if (ffc->p == NULL in dsa_gen() [all …]
|
D | dh_kmgmt.c | 693 FFC_PARAMS *ffc; in dh_gen() local 717 ffc = ossl_dh_get0_params(dh); in dh_gen() 722 ffc = ossl_dh_get0_params(dh); in dh_gen() 726 && !ossl_ffc_params_copy(ffc, gctx->ffc_params)) in dh_gen() 729 if (!ossl_ffc_params_set_seed(ffc, gctx->seed, gctx->seedlen)) in dh_gen() 732 ossl_ffc_params_set_gindex(ffc, gctx->gindex); in dh_gen() 734 ossl_ffc_params_set_pcounter(ffc, gctx->pcounter); in dh_gen() 736 ossl_ffc_params_set_h(ffc, gctx->hindex); in dh_gen() 739 if (!ossl_ffc_set_digest(ffc, gctx->mdname, gctx->mdprops)) in dh_gen() 767 if (ffc->p == NULL || ffc->g == NULL) in dh_gen() [all …]
|
/third_party/openssl/include/internal/ |
D | ffc.h | 148 int ossl_ffc_params_print(BIO *bp, const FFC_PARAMS *ffc, int indent); 196 int ossl_ffc_params_todata(const FFC_PARAMS *ffc, OSSL_PARAM_BLD *tmpl, 198 int ossl_ffc_params_fromdata(FFC_PARAMS *ffc, const OSSL_PARAM params[]); 213 int ossl_ffc_named_group_set(FFC_PARAMS *ffc, const DH_NAMED_GROUP *group);
|
/third_party/openssl/crypto/dh/ |
D | dh_backend.c | 34 FFC_PARAMS *ffc; in dh_ffc_params_fromdata() local 38 ffc = ossl_dh_get0_params(dh); in dh_ffc_params_fromdata() 39 if (ffc == NULL) in dh_ffc_params_fromdata() 42 ret = ossl_ffc_params_fromdata(ffc, params); in dh_ffc_params_fromdata()
|
/third_party/openssl/crypto/dsa/ |
D | dsa_lib.c | 350 FFC_PARAMS *ffc; in ossl_dsa_ffc_params_fromdata() local 354 ffc = ossl_dsa_get0_params(dsa); in ossl_dsa_ffc_params_fromdata() 355 if (ffc == NULL) in ossl_dsa_ffc_params_fromdata() 358 ret = ossl_ffc_params_fromdata(ffc, params); in ossl_dsa_ffc_params_fromdata()
|
/third_party/openssl/providers/ |
D | fips.module.sources | 212 crypto/ffc/ffc_backend.c 213 crypto/ffc/ffc_dh.c 214 crypto/ffc/ffc_key_generate.c 215 crypto/ffc/ffc_key_validate.c 216 crypto/ffc/ffc_params.c 217 crypto/ffc/ffc_params_generate.c 218 crypto/ffc/ffc_params_validate.c 371 include/internal/ffc.h
|
D | fips-sources.checksums | 212 709d40d5096497349b8b9e2917e949a0a75e6065df62798d1816866ca7e7b4ca crypto/ffc/ffc_backend.c 213 a12af33e605315cdddd6d759e70cd9632f0f33682b9aa7103ed1ecd354fc7e55 crypto/ffc/ffc_dh.c 214 854378f57707e31ad02cca6eec94369f91f327288d3665713e249c12f7b13211 crypto/ffc/ffc_key_generate.c 215 084ae8e68a9df5785376bb961a998036336ed13092ffd1c4258b56e6a7e0478b crypto/ffc/ffc_key_validate.c 216 b18d5d7cfc95163defea41f5a081e90f6a7163a6b81c6cfadb8b470ef2e83fc5 crypto/ffc/ffc_params.c 217 5174e008f44909724e0ee7109095ee353e67e9ba77e1ab3bedfcf6eaecab7b6c crypto/ffc/ffc_params_generate.c 218 73dac805abab36cd9df53a421221c71d06a366a4ce479fa788be777f11b47159 crypto/ffc/ffc_params_validate.c 371 557aa7985c8cde8fd9fa59a49f47fa955ec36b36f6fe9edd4bfd3872e3b13a9a include/internal/ffc.h
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_shader_state.c | 446 uint8_t bfc, ffc; in nv50_fp_linkage_validate() local 447 ffc = (nv50->state.semantic_color & NV50_3D_SEMANTIC_COLOR_FFC0_ID__MASK); in nv50_fp_linkage_validate() 450 if (nv50->rast->pipe.light_twoside == ((ffc == bfc) ? 0 : 1)) in nv50_fp_linkage_validate()
|
/third_party/openssl/crypto/ |
D | build.info | 9 ffc
|
/third_party/openssl/ |
D | BUILD.gn | 1148 "crypto/ffc/ffc_backend.c", 1149 "crypto/ffc/ffc_dh.c", 1150 "crypto/ffc/ffc_key_generate.c", 1151 "crypto/ffc/ffc_key_validate.c", 1152 "crypto/ffc/ffc_params.c", 1153 "crypto/ffc/ffc_params_generate.c", 1154 "crypto/ffc/ffc_params_validate.c",
|
/third_party/node/deps/npm/node_modules/node-gyp/ |
D | CHANGELOG.md | 62 * [[`1236869ffc`](https://github.com/nodejs/node-gyp/commit/1236869ffc)] - **gyp**: modify XcodeVer…
|
/third_party/openssl/crypto/err/ |
D | openssl.txt | 469 DH_R_BAD_FFC_PARAMETERS:127:bad ffc parameters 499 DSA_R_BAD_FFC_PARAMETERS:114:bad ffc parameters
|
/third_party/mesa3d/src/freedreno/.gitlab-ci/reference/ |
D | es2gears-a320.log | 1996 11842ffc: 0000: 000021ea 0000000b 5851 11844a68: 0000: 0000057f 00002ffc 5863 !+ 00002ffc CP_SCRATCH_REG7: 12284 6667 11844ffc: 0000: 0000057f 0000302f 13505 11847ffc: 0000: 0000057f 000031d3
|
/third_party/elfutils/tests/ |
D | testfile45.expect.bz2 |
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V8.md | 1096 * [[`3225601ffc`](https://github.com/nodejs/node/commit/3225601ffc)] - **net**: remove Socket.proto…
|