Home
last modified time | relevance | path

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

/third_party/openssl/crypto/rsa/
Drsa_local.h103 struct rsa_meth_st { struct
104 char *name;
105 int (*rsa_pub_enc) (int flen, const unsigned char *from,
107 int (*rsa_pub_dec) (int flen, const unsigned char *from,
109 int (*rsa_priv_enc) (int flen, const unsigned char *from,
111 int (*rsa_priv_dec) (int flen, const unsigned char *from,
114 int (*rsa_mod_exp) (BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx);
116 int (*bn_mod_exp) (BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
119 int (*init) (RSA *rsa);
121 int (*finish) (RSA *rsa);
[all …]
/third_party/python/Lib/lib2to3/tests/data/
Dinfinite_recursion.py1100 class rsa_meth_st(Structure): class