Searched refs:gencb (Results 1 – 2 of 2) sorted by relevance
/openbsd/lib/libcrypto/bn/ |
H A D | bn_lib.c | 729 BN_GENCB_set_old(BN_GENCB *gencb, void (*cb)(int, int, void *), void *cb_arg) in BN_GENCB_set_old() argument 731 gencb->ver = 1; in BN_GENCB_set_old() 732 gencb->cb.cb_1 = cb; in BN_GENCB_set_old() 733 gencb->arg = cb_arg; in BN_GENCB_set_old() 739 BN_GENCB_set(BN_GENCB *gencb, int (*cb)(int, int, BN_GENCB *), void *cb_arg) in BN_GENCB_set() argument 741 gencb->ver = 2; in BN_GENCB_set() 742 gencb->cb.cb_2 = cb; in BN_GENCB_set() 743 gencb->arg = cb_arg; in BN_GENCB_set()
|
H A D | bn.h | 224 void BN_GENCB_set_old(BN_GENCB *gencb, void (*callback)(int, int, void *), 228 void BN_GENCB_set(BN_GENCB *gencb, int (*callback)(int, int, BN_GENCB *),
|