On Sun June 19 2011, Ilya Dyoshin wrote: > Good day! > > is there any tutorial on adding a new cryptoalgorithms to openssl wrapper. > I.e.: I have a set of cryptographic functions released in c (for crypting, > decrypting etc.), and want to wrap it to openssl, in order to use it as an > algorithm in apache's httpd server, using standart mod_ssl. >
Not one of the developers myself, but have seen the replies to this question in the past. The way to do that is to write it as an "engine object". http://www.openssl.org/docs/crypto/engine.html Its a general interface for the implementation which can be hardware, software, or other. The closest I have seen to a tutorial is the recommendation to use the gost engine as your coding model. http://cvs.openssl.org/fileview?f=openssl/engines/ccgost/README.gost Mike > > Kind regards, > Mit freundlichen Grüßen > Ilya Dyoshin > [email protected] > > > ______________________________________________________________________ > OpenSSL Project http://www.openssl.org > User Support Mailing List [email protected] > Automated List Manager [email protected] > > ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [email protected] Automated List Manager [email protected]
