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.h40 struct dh_method { struct
41 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,
/third_party/python/Lib/lib2to3/tests/data/
Dinfinite_recursion.py522 class dh_method(Structure): class