HomeSort by: relevance | last modified time | path
    Searched refs:gN (Results 1 - 7 of 7) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/srp/
srp_vfy.c 349 SRP_gN *gN;
352 gN = sk_SRP_gN_value(gN_tab, i);
353 if (gN && (id == NULL || strcmp(gN->id, id) == 0))
354 return gN;
402 SRP_gN *gN = NULL;
438 if ((gN = OPENSSL_malloc(sizeof(*gN))) == NULL)
441 if ((gN->id = OPENSSL_strdup(pp[DB_srpid])) == NULL
442 || (gN->N = SRP_gN_place_bn(vb->gN_cache, pp[DB_srpverifier])
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/srp/
srp_vfy.c 352 SRP_gN *gN;
355 gN = sk_SRP_gN_value(gN_tab, i);
356 if (gN && (id == NULL || strcmp(gN->id, id) == 0))
357 return gN;
405 SRP_gN *gN = NULL;
433 if ((gN = OPENSSL_malloc(sizeof(*gN))) == NULL)
436 if ((gN->id = OPENSSL_strdup(pp[DB_srpid])) == NULL
437 || (gN->N = SRP_gN_place_bn(vb->gN_cache, pp[DB_srpverifier])
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/srp/
srp_vfy.c 342 SRP_gN *gN;
345 gN = sk_SRP_gN_value(gN_tab, i);
346 if (gN && (id == NULL || strcmp(gN->id, id) == 0))
347 return gN;
390 SRP_gN *gN = NULL;
418 if ((gN = OPENSSL_malloc(sizeof(*gN))) == NULL)
421 if ((gN->id = OPENSSL_strdup(pp[DB_srpid])) == NULL
422 || (gN->N = SRP_gN_place_bn(vb->gN_cache, pp[DB_srpverifier])
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/
srp.c 230 { "gn", OPT_GN, 's', "Set g and N values to be used for new verifier" },
251 char *passin = NULL, *passout = NULL, *gN = NULL, *userinfo = NULL;
294 gN = opt_arg();
404 if ((gNindex < 0) && (gN != NULL) && strcmp(gN, pp[DB_srpid]) == 0)
417 } else if (maxgN > 0 && !SRP_get_default_gN(gN)) {
418 BIO_printf(bio_err, "No g and N value for index \"%s\"\n", gN);
464 gNrow ? gNrow[DB_srpsalt] : gN,
  /src/crypto/external/bsd/openssl/dist/apps/
srp.c 219 {"gn", OPT_GN, 's', "Set g and N values to be used for new verifier"},
240 char *passin = NULL, *passout = NULL, *gN = NULL, *userinfo = NULL;
283 gN = opt_arg();
393 if ((gNindex < 0) && (gN != NULL) && strcmp(gN, pp[DB_srpid]) == 0)
406 } else if (maxgN > 0 && !SRP_get_default_gN(gN)) {
407 BIO_printf(bio_err, "No g and N value for index \"%s\"\n", gN);
456 gNrow ? gNrow[DB_srpsalt] : gN,
  /src/crypto/external/bsd/openssl.old/dist/apps/
srp.c 206 {"gn", OPT_GN, 's', "Set g and N values to be used for new verifier"},
225 char *passin = NULL, *passout = NULL, *gN = NULL, *userinfo = NULL;
268 gN = opt_arg();
370 if ((gNindex < 0) && (gN != NULL) && strcmp(gN, pp[DB_srpid]) == 0)
383 } else if (maxgN > 0 && !SRP_get_default_gN(gN)) {
384 BIO_printf(bio_err, "No g and N value for index \"%s\"\n", gN);
433 gNrow ? gNrow[DB_srpsalt] : gN,
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm.mli 1482 (** [fold_left_globals f init m] is [f (... (f init g1) ...) gN] where
1483 [g1,...,gN] are the global variables of module [m]. Tail recursive. *)
1501 (** [fold_right_globals f m init] is [f g1 (... (f gN init) ...)] where
1502 [g1,...,gN] are the global variables of module [m]. Tail recursive. *)
1835 (** [fold_left_instrs f init bb] is [f (... (f init g1) ...) gN] where
1836 [g1,...,gN] are the instructions of basic block [bb]. Tail recursive. *)

Completed in 29 milliseconds