/external/openssl/crypto/engine/ |
eng_cryptodev.c | 1078 ret = (*meth->rsa_mod_exp)(r0, I, rsa, ctx); 1083 ret = (*meth->rsa_mod_exp)(r0, I, rsa, ctx); 1370 cryptodev_rsa.rsa_mod_exp = rsa_meth->rsa_mod_exp; [all...] |
/external/openssl/crypto/rsa/ |
rsa.h | 100 int (*rsa_mod_exp)(BIGNUM *r0,const BIGNUM *I,RSA *rsa,BN_CTX *ctx); /* Can be null */ member in struct:rsa_meth_st 183 /* This flag means the private key operations will be handled by rsa_mod_exp
|
rsa_eay.c | 419 if (!rsa->meth->rsa_mod_exp(ret, f, rsa, ctx)) goto err; 543 if (!rsa->meth->rsa_mod_exp(ret, f, rsa, ctx)) goto err;
|
/external/openssl/include/openssl/ |
rsa.h | 100 int (*rsa_mod_exp)(BIGNUM *r0,const BIGNUM *I,RSA *rsa,BN_CTX *ctx); /* Can be null */ member in struct:rsa_meth_st 183 /* This flag means the private key operations will be handled by rsa_mod_exp
|