Home
last modified time | relevance | path

Searched refs:gN (Results 1 – 11 of 11) sorted by relevance

/freebsd/crypto/openssl/crypto/srp/
H A Dsrp_vfy.c352 SRP_gN *gN; in SRP_get_gN_by_id() local
355 gN = sk_SRP_gN_value(gN_tab, i); in SRP_get_gN_by_id()
356 if (gN && (id == NULL || strcmp(gN->id, id) == 0)) in SRP_get_gN_by_id()
357 return gN; in SRP_get_gN_by_id()
405 SRP_gN *gN = NULL; in SRP_VBASE_init() local
433 if ((gN = OPENSSL_malloc(sizeof(*gN))) == NULL) in SRP_VBASE_init()
436 if ((gN->id = OPENSSL_strdup(pp[DB_srpid])) == NULL in SRP_VBASE_init()
437 || (gN->N = SRP_gN_place_bn(vb->gN_cache, pp[DB_srpverifier])) in SRP_VBASE_init()
439 || (gN->g = SRP_gN_place_bn(vb->gN_cache, pp[DB_srpsalt])) in SRP_VBASE_init()
441 || sk_SRP_gN_insert(SRP_gN_tab, gN, 0) == 0) in SRP_VBASE_init()
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DSRP_create_verifier.pod62 load the appropriate gN values (see SRP_get_default_gN()).
70 The SRP_get_default_gN() function returns the gN parameters for the RFC 5054 I<id>
104 SRP_gN *gN = SRP_get_default_gN("8192");
107 SRP_create_verifier_BN_ex(username, password, &salt, &verifier, gN->N, gN->g,
113 SRP_user_pwd_set_gN(pwd, gN->g, gN->N);
H A DSRP_VBASE_new.pod63 If no matching user is found but a seed_key and default gN parameters have been
H A DSSL_CTX_set_srp_password.pod102 The SSL_CTX_set_srp_verify_param_callback() sets the SRP gN parameter verification
/freebsd/crypto/openssl/apps/
H A Dsrp.c240 char *passin = NULL, *passout = NULL, *gN = NULL, *userinfo = NULL; in srp_main() local
283 gN = opt_arg(); in srp_main()
393 if ((gNindex < 0) && (gN != NULL) && strcmp(gN, pp[DB_srpid]) == 0) in srp_main()
406 } else if (maxgN > 0 && !SRP_get_default_gN(gN)) { in srp_main()
407 BIO_printf(bio_err, "No g and N value for index \"%s\"\n", gN); in srp_main()
456 gNrow ? gNrow[DB_srpsalt] : gN, in srp_main()
/freebsd/crypto/libecc/include/libecc/hash/
H A Dstreebog.h1243 static inline void gN(u64 h[STREEBOG_BLOCK_U64_SIZE], in gN() function
1273 gN(ctx->h, M, ctx->N); in streebog_process()
/freebsd/crypto/libecc/src/hash/
H A Dstreebog.c138 gN(ctx->h, ctx->N, Z); in streebog_final()
139 gN(ctx->h, ctx->Sigma, Z); in streebog_final()
/freebsd/secure/caroot/untrusted/
H A DChambers_of_Commerce_Root_-_2008.pem123 5gN/ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfL
/freebsd/contrib/googletest/docs/reference/
H A Dtesting.md112gN)` | Yields as `std::tuple` *n*-tuples all combinations (Cartesian product) of the values gene…
/freebsd/contrib/netbsd-tests/usr.bin/netpgpverify/
H A Dt_netpgpverify.sh5901 mdKSThPpOkooywrxsZMBOjWD86s0X1tTr54F64C0VwN89s/9gN//NSBD6rBZkqiZ
6342 U/o9Sm1r56e/gN/ulLvyMsZPONUwbMCMlre0xtm1YsKkim4T2i5Ukq9uO2yLM4Zt
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td259 def gN_Group : OptionGroup<"<gN group>">, Group<g_Group>,