RE: Dynamic Engine problems with some 0.9.7x version

2005-10-25 Thread Frédéric Donnat
: Marco GRELLA [mailto:[EMAIL PROTECTED] Sent: Mon 10/24/2005 5:50 PM To: openssl-dev@openssl.org; openssl-users@openssl.org Cc: Subject:Dynamic Engine problems with some 0.9.7x version Hi all, I have developed an OpenSSL Engine for our hw crypto accelerator. I have no problems

Dynamic Engine problems with some 0.9.7x version

2005-10-24 Thread Marco GRELLA
Hi all, I have developed an OpenSSL Engine for our hw crypto accelerator. I have no problems in using it as a dynamic engine with OpenSSL 0.9.8, neither I have problems in loading it with OpenSSL 0.9.7d. But I get problems with 0.9.7g/i (so, I guess 'h' too) versions. Here I report the

Re: Dynamic engine problems

2005-01-18 Thread Dmitry Belyavsky
Hello! On Tue, 18 Jan 2005, Dmitry Belyavsky wrote: That's because of the call to ENGINE_unregister_ciphers() in cce_destroy(). Can I suggest you take a look at, for example, demos/engines/rsaref/ for a working example to look at? Unfortunately that's not only because of

Dynamic engine problems

2005-01-17 Thread Dmitry Belyavsky
Hello! We are implementing custom engine providing GOST algorithms. We get a SEGFAULT on app_shutdown. We didn't find out what is wrong with our code. Engine code is attached. We use 20050112 snapshot of 0.9.8 branch. -- SY, Dmitry Belyavsky (ICQ UIN 6575) #include string.h #include

Re: Dynamic engine problems

2005-01-17 Thread Richard Levitte - VMS Whacker
In message [EMAIL PROTECTED] on Mon, 17 Jan 2005 11:06:49 +0300 (MSK), Dmitry Belyavsky [EMAIL PROTECTED] said: beldmit We are implementing custom engine providing GOST algorithms. beldmit We get a SEGFAULT on app_shutdown. That's because of the call to ENGINE_unregister_ciphers() in

Re: Dynamic engine problems

2005-01-17 Thread Dmitry Belyavsky
Hello! On Mon, 17 Jan 2005, Richard Levitte - VMS Whacker wrote: beldmit We are implementing custom engine providing GOST algorithms. beldmit We get a SEGFAULT on app_shutdown. That's because of the call to ENGINE_unregister_ciphers() in cce_destroy(). Can I suggest you take a look at, for

Re: Dynamic engine problems

2005-01-17 Thread Richard Levitte - VMS Whacker
In message [EMAIL PROTECTED] on Mon, 17 Jan 2005 13:27:03 +0300 (MSK), Dmitry Belyavsky [EMAIL PROTECTED] said: beldmit Thank you very much. Should we call ENGINE_unregister_ciphers beldmit any time really? What are they for? It's a function to be called from the application when wanting