Home
last modified time | relevance | path

Searched defs:dh_method (Results 1 – 2 of 2) sorted by relevance

/third_party/openssl/crypto/dh/
Ddh_local.h43 struct dh_method { struct
44 char *name;
46 int (*generate_key) (DH *dh);
47 int (*compute_key) (unsigned char *key, const BIGNUM *pub_key, DH *dh);
50 int (*bn_mod_exp) (const DH *dh, BIGNUM *r, const BIGNUM *a,
53 int (*init) (DH *dh);
54 int (*finish) (DH *dh);
55 int flags;
56 char *app_data;
58 int (*generate_params) (DH *dh, int prime_len, int generator,
/third_party/python/Lib/lib2to3/tests/data/
Dinfinite_recursion.py522 class dh_method(Structure): class