We seem to carry some rests of the 0.9.6 [engine] ENGINE framework, here in
authorRichard Levitte <levitte@openssl.org>
Tue, 8 Apr 2003 06:01:55 +0000 (06:01 +0000)
committerRichard Levitte <levitte@openssl.org>
Tue, 8 Apr 2003 06:01:55 +0000 (06:01 +0000)
form of unneeded direct calls through the engine pointer..

crypto/rsa/rsa_sign.c

index 619755ce0bc41edf749e17b334980a3d941a2901..02eb8136b05a1f70ebbf7552369c4589b60a89f1 100644 (file)
@@ -62,9 +62,6 @@
 #include <openssl/rsa.h>
 #include <openssl/objects.h>
 #include <openssl/x509.h>
-#ifndef OPENSSL_NO_ENGINE
-#include <openssl/engine.h>
-#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);
                }