Home
last modified time | relevance | path

Searched refs:gencb (Results 1 – 10 of 10) sorted by relevance

/src/crypto/openssl/providers/implementations/keymgmt/
H A Drsa_kmgmt.c575 BN_GENCB *gencb = NULL; in rsa_gen() local
602 gencb = BN_GENCB_new(); in rsa_gen()
603 if (gencb != NULL) in rsa_gen()
604 BN_GENCB_set(gencb, rsa_gencb, genctx); in rsa_gen()
615 gctx->pub_exp, gencb)) in rsa_gen()
628 BN_GENCB_free(gencb); in rsa_gen()
H A Ddsa_kmgmt.c596 BN_GENCB *gencb = NULL; in dsa_gen() local
636 gencb = BN_GENCB_new(); in dsa_gen()
637 if (gencb != NULL) in dsa_gen()
638 BN_GENCB_set(gencb, dsa_gencb, genctx); in dsa_gen()
663 gencb) in dsa_gen()
683 BN_GENCB_free(gencb); in dsa_gen()
H A Ddh_kmgmt.c699 BN_GENCB *gencb = NULL; in dh_gen() local
762 gencb = BN_GENCB_new(); in dh_gen()
763 if (gencb != NULL) in dh_gen()
764 BN_GENCB_set(gencb, dh_gencb, genctx); in dh_gen()
774 gctx->generator, gencb); in dh_gen()
778 gencb); in dh_gen()
812 BN_GENCB_free(gencb); in dh_gen()
/src/crypto/openssl/doc/man3/
H A DBN_generate_prime.pod29 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
/src/contrib/libevent/
H A Dhttp-internal.h166 void (*gencb)(struct evhttp_request *req, void *); member
H A Dhttp.c3500 if (http->gencb) { in evhttp_handle_request()
3501 (*http->gencb)(req, http->gencbarg); in evhttp_handle_request()
3966 http->gencb = cb; in evhttp_set_gencb()
/src/contrib/ntp/sntp/libevent/
H A Dhttp-internal.h166 void (*gencb)(struct evhttp_request *req, void *); member
H A Dhttp.c3500 if (http->gencb) { in evhttp_handle_request()
3501 (*http->gencb)(req, http->gencbarg); in evhttp_handle_request()
3966 http->gencb = cb; in evhttp_set_gencb()
/src/crypto/openssl/crypto/bn/
H A Dbn_lib.c1120 void BN_GENCB_set_old(BN_GENCB *gencb, void (*callback)(int, int, void *), in BN_GENCB_set_old() argument
1123 BN_GENCB *tmp_gencb = gencb; in BN_GENCB_set_old()
1130 void BN_GENCB_set(BN_GENCB *gencb, int (*callback)(int, int, BN_GENCB *), in BN_GENCB_set() argument
1133 BN_GENCB *tmp_gencb = gencb; in BN_GENCB_set()
/src/crypto/openssl/include/openssl/
H A Dbn.h103 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 *),