From 0b553683063250d29c4e5405844b860724fb8009 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 8 Apr 2003 06:01:55 +0000 Subject: [PATCH] We seem to carry some rests of the 0.9.6 [engine] ENGINE framework, here in form of unneeded direct calls through the engine pointer.. --- crypto/rsa/rsa_sign.c | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/crypto/rsa/rsa_sign.c b/crypto/rsa/rsa_sign.c index 619755ce0b..02eb8136b0 100644 --- a/crypto/rsa/rsa_sign.c +++ b/crypto/rsa/rsa_sign.c @@ -62,9 +62,6 @@ #include #include #include -#ifndef OPENSSL_NO_ENGINE -#include -#endif /* Size of an SSL signature: MD5+SHA1 */ #define SSL_SIG_LENGTH 36 @@ -81,11 +78,6 @@ int RSA_sign(int type, const unsigned char *m, unsigned int m_len, ASN1_OCTET_STRING digest; if(rsa->flags & RSA_FLAG_SIGN_VER) { -#ifndef OPENSSL_NO_ENGINE - if(ENGINE_get_RSA(rsa->engine)->rsa_sign) - return ENGINE_get_RSA(rsa->engine)->rsa_sign(type, - m, m_len, sigret, siglen, rsa); -#endif return rsa->meth->rsa_sign(type, m, m_len, sigret, siglen, rsa); } @@ -165,11 +157,6 @@ int RSA_verify(int dtype, const unsigned char *m, unsigned int m_len, if(rsa->flags & RSA_FLAG_SIGN_VER) { -#ifndef OPENSSL_NO_ENGINE - if(ENGINE_get_RSA(rsa->engine)->rsa_verify) - return ENGINE_get_RSA(rsa->engine)->rsa_verify(dtype, - m, m_len, sigbuf, siglen, rsa); -#endif return rsa->meth->rsa_verify(dtype, m, m_len, sigbuf, siglen, rsa); } -- 2.25.1