Home
last modified time | relevance | path

Searched refs:dasync_rsa_method (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/crypto/external/bsd/openssl.old/dist/engines/
H A De_dasync.c111 static RSA_METHOD *dasync_rsa_method = NULL; variable
193 if ((dasync_rsa_method = RSA_meth_new("Dummy Async RSA method", 0)) == NULL in bind_dasync()
194 || RSA_meth_set_pub_enc(dasync_rsa_method, dasync_pub_enc) == 0 in bind_dasync()
195 || RSA_meth_set_pub_dec(dasync_rsa_method, dasync_pub_dec) == 0 in bind_dasync()
196 || RSA_meth_set_priv_enc(dasync_rsa_method, dasync_rsa_priv_enc) == 0 in bind_dasync()
197 || RSA_meth_set_priv_dec(dasync_rsa_method, dasync_rsa_priv_dec) == 0 in bind_dasync()
198 || RSA_meth_set_mod_exp(dasync_rsa_method, dasync_rsa_mod_exp) == 0 in bind_dasync()
199 || RSA_meth_set_bn_mod_exp(dasync_rsa_method, BN_mod_exp_mont) == 0 in bind_dasync()
200 || RSA_meth_set_init(dasync_rsa_method, dasync_rsa_init) == 0 in bind_dasync()
201 || RSA_meth_set_finish(dasync_rsa_method, dasync_rsa_finish) == 0) { in bind_dasync()
[all …]