Searched refs:gencb (Results 1 – 6 of 6) sorted by relevance
/openssl-master/providers/implementations/keymgmt/ |
A D | dsa_kmgmt.c | 521 BN_GENCB *gencb = NULL; in dsa_gen() local 537 gencb = BN_GENCB_new(); in dsa_gen() 538 if (gencb != NULL) in dsa_gen() 539 BN_GENCB_set(gencb, dsa_gencb, genctx); in dsa_gen() 565 gencb) <= 0) in dsa_gen() 584 BN_GENCB_free(gencb); in dsa_gen()
|
A D | rsa_kmgmt.c | 547 BN_GENCB *gencb = NULL; in rsa_gen() local 574 gencb = BN_GENCB_new(); in rsa_gen() 575 if (gencb != NULL) in rsa_gen() 576 BN_GENCB_set(gencb, rsa_gencb, genctx); in rsa_gen() 587 gctx->pub_exp, gencb)) in rsa_gen() 600 BN_GENCB_free(gencb); in rsa_gen()
|
A D | dh_kmgmt.c | 662 BN_GENCB *gencb = NULL; in dh_gen() local 714 gencb = BN_GENCB_new(); in dh_gen() 715 if (gencb != NULL) in dh_gen() 716 BN_GENCB_set(gencb, dh_gencb, genctx); in dh_gen() 726 gctx->generator, gencb); in dh_gen() 730 gencb); in dh_gen() 755 BN_GENCB_free(gencb); in dh_gen()
|
/openssl-master/doc/man3/ |
A D | BN_generate_prime.pod | 29 void BN_GENCB_set_old(BN_GENCB *gencb, 32 void BN_GENCB_set(BN_GENCB *gencb, 171 call to BN_GENCB_set(), where B<gencb> is a B<BN_GENCB *>, B<callback> is of 178 the type of the callback and will invoke B<callback(a, b, gencb)> for new
|
/openssl-master/crypto/bn/ |
A D | bn_lib.c | 994 void BN_GENCB_set_old(BN_GENCB *gencb, void (*callback) (int, int, void *), in BN_GENCB_set_old() argument 997 BN_GENCB *tmp_gencb = gencb; in BN_GENCB_set_old() 1004 void BN_GENCB_set(BN_GENCB *gencb, int (*callback) (int, int, BN_GENCB *), in BN_GENCB_set() argument 1007 BN_GENCB *tmp_gencb = gencb; in BN_GENCB_set()
|
/openssl-master/include/openssl/ |
A D | bn.h | 103 void BN_GENCB_set_old(BN_GENCB *gencb, void (*callback) (int, int, void *), 107 void BN_GENCB_set(BN_GENCB *gencb, int (*callback) (int, int, BN_GENCB *),
|
Completed in 12 milliseconds