Fwd: Changing session key, IV HMAC key regulary

2006-03-08 Thread Jagannadha Bhattu G
Hi,

Can somebody help me with this? 

Thanks
JB-- Forwarded message --From: Jagannadha Bhattu G 
[EMAIL PROTECTED]
Date: Mar 6, 2006 6:49 PMSubject: Changing session key, IV  HMAC key regularyTo: openssl-users@openssl.org
Hi,


Can some one let me know if the SSL protocol specification mandates changes to these values frequently in an ongoing connection?

If not how to enable it using APIs? 

Thanks
JB





Re: Fwd: Changing session key, IV HMAC key regulary

2006-03-08 Thread Jagannadha Bhattu G
Thanks JimmyOn 3/8/06, jimmy [EMAIL PROTECTED] wrote:
Jagannadha Bhattu G wrote: Hi, Can somebody help me with this? Thanks JB -- Forwarded message -- From: *Jagannadha Bhattu G*  
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Date: Mar 6, 2006 6:49 PM Subject: Changing session key, IV  HMAC key regulary
 To: openssl-users@openssl.org mailto:openssl-users@openssl.org Hi, Can some one let me know if the SSL protocol specification mandates
 changes to these values frequently in an ongoing connection? If not how to enable it using APIs? Thanks JBThis would be a renegotiation. You can do it via aSSL_renegotiate()/SSL_do_handshake() sequence.
-jb__OpenSSL Project http://www.openssl.orgUser Support Mailing List
openssl-users@openssl.orgAutomated List Manager [EMAIL PROTECTED]


Re: calling SSL_library_init multiple times

2006-03-06 Thread Jagannadha Bhattu G
Hi Randy,



Thanks for the effort and the reply. I have changed the design of my
library interface to the applications to include a init call so that I
do not need to worry about this. 



Warm regards

JBOn 2/28/06, Randy Turner [EMAIL PROTECTED] wrote:














The first sentence of the explanation below
seems to infer that its ok to call ssl_library_init() from each thread that
might want to access the SSL library.



I don't think that's what was
intended.



I think the last sentence is more accurate
– if you have a multi-threaded application, and you've "hooked"
the static and dynamic mutex functions to allow OpenSSL to correctly operate in
a multi-threaded environment, then SSL_library_init() should only be called
once, during application initialization. This single call will initialize the
library for all threads. This is my interpretation of from what I have gleaned
from the docs and sources.



Randy











From:
[EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED]] On Behalf Of Jagannadha Bhattu G
Sent: Tuesday, February 28, 2006
1:42 AM
To: openssl-users@openssl.org
Subject: Re: calling
SSL_library_init multiple times





Thanks Nils and Andrew
for the replies.

-JB



On 2/27/06, Nils
Larsch [EMAIL PROTECTED]
wrote:

Jagannadha Bhattu G wrote:
 Hi,

 Can I call SSL_library_init multiple times in my code under different
 threads?

as SSL_library_init() initializes global tables it should only
be called from one thread a time and of course no other thread 
should use the global data while SSL_library_init() is running.
Ideally it should be run once before the threads using ssl are
created.

 From the documented return values,

it always returns 1 but this doesn't mean it's reentrant 

Cheers,
Nils
__OpenSSL
Project
http://www.openssl.org
User Support Mailing
Listopenssl-users@openssl.org
Automated List
Manager
[EMAIL PROTECTED]














Changing session key, IV HMAC key regulary

2006-03-06 Thread Jagannadha Bhattu G
Hi,

Can some one let me know if the SSL protocol specification mandates changes to these values frequently in an ongoing connection?

If not how to enable it using APIs? 

Thanks
JB


Re: calling SSL_library_init multiple times

2006-02-28 Thread Jagannadha Bhattu G
Thanks Nils and Andrew for the replies.

-JBOn 2/27/06, Nils Larsch [EMAIL PROTECTED] wrote:
Jagannadha Bhattu G wrote: Hi, Can I call SSL_library_init multiple times in my code under different threads?as SSL_library_init() initializes global tables it should onlybe called from one thread a time and of course no other thread
should use the global data while SSL_library_init() is running.Ideally it should be run once before the threads using ssl arecreated. From the documented return values,it always returns 1 but this doesn't mean it's reentrant
Cheers,Nils__OpenSSL
Project
http://www.openssl.orgUser Support Mailing
Listopenssl-users@openssl.orgAutomated
List
Manager
[EMAIL PROTECTED]


calling SSL_library_init multiple times

2006-02-26 Thread Jagannadha Bhattu G
Hi,

Can I call SSL_library_init multiple times in my code under different
threads? From the documented return values, I conclude that it should
be possible. Can some one confirm it?

Thanks
JB