<blockquote style='border-left:2px solid #CCCCCC;padding:0 1em' class="quote dark-border-color"><div class="quote light-border-color">
<div class="quote-author" style="font-weight: bold;">danigrosu wrote</div>
<div class="quote-message">
I'm just trying to implement an RSA engine and I thought that this would be a good start.<br>
I tryed successfully the <a href="https://www.openssl.org/blog/blog/2015/11/23/engine-building-lesson-2-an-example-md5-engine/" target="_top" rel="nofollow" link="external">MD5 Engine</a> written by Richard Levitte and my next step is to build an RSA engine<br> which I will use in my application.<br><br>
I think my problem is simple and it's just something that I miss.
<br>
</div>
</div></blockquote>


Relating to the MD5 Engine, I tryed to build the <a href="https://github.com/engine-corner/Lesson-2-A-digest" target="_top" rel="nofollow" link="external">git version</a> manually with these commands:<br>
<code>
$ gcc -fPIC -o rfc1321/md5c.o -c rfc1321/md5c.c<br>
$ gcc -fPIC -o md5-engine.o -c e_md5.c<br>
$ gcc -shared -o md5-engine.so -lcrypto md5-engine.o rfc1321/md5c.o<br>
</code>
... and it failed when I tried to load the engine, but using the autotools and a few modifications it worked.
<br><br>

So, maybe, the same problem is here, with the RSA-X engine.
<br>
Maybe Mr. Levitte could clarify this.<br>
<br>
Dani Grosu

        
        
        
<br/><hr align="left" width="300" />
View this message in context: <a href="http://openssl.6102.n7.nabble.com/Errors-when-loading-an-OpenSSL-RSA-Engine-tp64385p64483.html">Re: Errors when loading an OpenSSL RSA Engine</a><br/>
Sent from the <a href="http://openssl.6102.n7.nabble.com/OpenSSL-Dev-f29372.html">OpenSSL - Dev mailing list archive</a> at Nabble.com.<br/>