summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-10-10 20:34:17 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-10-10 20:34:17 +0000
commitb17442bb043534839dd9799a1e7473257ec9f174 (patch)
tree67f4cc0db51a1f77d5856ec363caea7ddc258ce7 /crypto
parent4874e235fb15891d0cf024d52ebcd758cfb83ece (diff)
def_rsa_finish not used anymore.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/engine/eng_rsax.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/engine/eng_rsax.c b/crypto/engine/eng_rsax.c
index c73fb21995..96e63477ee 100644
--- a/crypto/engine/eng_rsax.c
+++ b/crypto/engine/eng_rsax.c
@@ -108,7 +108,6 @@ static int e_rsax_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void));
/* RSA stuff */
static int e_rsax_rsa_mod_exp(BIGNUM *r, const BIGNUM *I, RSA *rsa, BN_CTX *ctx);
static int e_rsax_rsa_finish(RSA *r);
-static int (*def_rsa_finish)(RSA *r);
#endif
static const ENGINE_CMD_DEFN e_rsax_cmd_defns[] = {
@@ -164,7 +163,6 @@ static int bind_helper(ENGINE *e)
e_rsax_rsa.rsa_priv_enc = meth1->rsa_priv_enc;
e_rsax_rsa.rsa_priv_dec = meth1->rsa_priv_dec;
e_rsax_rsa.bn_mod_exp = meth1->bn_mod_exp;
- def_rsa_finish = meth1->finish;
#endif
return 1;
}