Searched defs:dh_method (Results 1 – 2 of 2) sorted by relevance
40 struct dh_method { struct41 char *name;43 int (*generate_key) (DH *dh);44 int (*compute_key) (unsigned char *key, const BIGNUM *pub_key, DH *dh);47 int (*bn_mod_exp) (const DH *dh, BIGNUM *r, const BIGNUM *a,50 int (*init) (DH *dh);51 int (*finish) (DH *dh);52 int flags;53 char *app_data;55 int (*generate_params) (DH *dh, int prime_len, int generator,
522 class dh_method(Structure): class