Searched refs:gencb (Results 1 – 6 of 6) sorted by relevance
/openssl/providers/implementations/keymgmt/ |
H A D | rsa_kmgmt.c | 581 BN_GENCB *gencb = NULL; in rsa_gen() local 608 gencb = BN_GENCB_new(); in rsa_gen() 609 if (gencb != NULL) in rsa_gen() 610 BN_GENCB_set(gencb, rsa_gencb, genctx); in rsa_gen() 621 gctx->pub_exp, gencb)) in rsa_gen() 634 BN_GENCB_free(gencb); in rsa_gen()
|
H A D | dsa_kmgmt.c | 598 BN_GENCB *gencb = NULL; in dsa_gen() local 639 gencb = BN_GENCB_new(); in dsa_gen() 640 if (gencb != NULL) in dsa_gen() 641 BN_GENCB_set(gencb, dsa_gencb, genctx); in dsa_gen() 666 gencb) <= 0) in dsa_gen() 685 BN_GENCB_free(gencb); in dsa_gen()
|
H A D | dh_kmgmt.c | 701 BN_GENCB *gencb = NULL; in dh_gen() local 764 gencb = BN_GENCB_new(); in dh_gen() 765 if (gencb != NULL) in dh_gen() 766 BN_GENCB_set(gencb, dh_gencb, genctx); in dh_gen() 776 gctx->generator, gencb); in dh_gen() 780 gencb); in dh_gen() 805 BN_GENCB_free(gencb); in dh_gen()
|
/openssl/doc/man3/ |
H A D | BN_generate_prime.pod | 29 void BN_GENCB_set_old(BN_GENCB *gencb, 32 void BN_GENCB_set(BN_GENCB *gencb, 174 call to BN_GENCB_set(), where B<gencb> is a B<BN_GENCB *>, B<callback> is of 181 the type of the callback and will invoke B<callback(a, b, gencb)> for new
|
/openssl/crypto/bn/ |
H A D | bn_lib.c | 1122 void BN_GENCB_set_old(BN_GENCB *gencb, void (*callback) (int, int, void *), in BN_GENCB_set_old() argument 1125 BN_GENCB *tmp_gencb = gencb; in BN_GENCB_set_old() 1132 void BN_GENCB_set(BN_GENCB *gencb, int (*callback) (int, int, BN_GENCB *), in BN_GENCB_set() argument 1135 BN_GENCB *tmp_gencb = gencb; in BN_GENCB_set()
|
/openssl/include/openssl/ |
H 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 25 milliseconds