RE: [openssl.org #502] TXT_DB error number 2

2004-10-18 Thread David C. Partridge
The renaming of the serial file is a known bug. See my recent post to openssl-dev Dave __ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED]

adding a new cipher

2004-10-18 Thread Paolo Serra
Hi all, I'm trying to add this new cipher, I changed files /evp/e_allc.c /evp/e_aes.c /evp/evp.h /objects/obj_mac.h just only copying what there was about existing ciphers (i.e.: aes-192-ecb) and modifying it for my cipher, now I can see it in the list of ciphers and I can use it, but I think it

refreshing keys regularly?

2004-10-18 Thread P. George
will it _help_ guard against brute force attempts to simply replace my server key on a daily or weekly basis? if so, should my client app be coded to do the same? or is changing out the server's key sufficient to this end? thanks. - philip

Re: refreshing keys regularly?

2004-10-18 Thread Oliver Welter
hi Philip, will it _help_ guard against brute force attempts to simply replace my server key on a daily or weekly basis? if so, should my client app be coded to do the same? or is changing out the server's key sufficient to this end? What are you doing with the keys ? Of course will it

Re: refreshing keys regularly?

2004-10-18 Thread Dr. Stephen Henson
On Mon, Oct 18, 2004, P. George wrote: will it _help_ guard against brute force attempts to simply replace my server key on a daily or weekly basis? if so, should my client app be coded to do the same? or is changing out the server's key sufficient to this end? If your key sizes are

bind: Address already in use

2004-10-18 Thread P. George
i found a nice little demo ssl server that works at: http://www.uweb.ucsb.edu/~jramrus/stuff/NetProgs/ssl_server.c please glance at this very short source file and tell me why when i hit control+c to stop it, that it won't let me launch it again without first rebooting the computer. after

Re: bind: Address already in use

2004-10-18 Thread Lev Walkin
P. George wrote: i found a nice little demo ssl server that works at: http://www.uweb.ucsb.edu/~jramrus/stuff/NetProgs/ssl_server.c please glance at this very short source file and tell me why when i hit control+c to stop it, that it won't let me launch it again without first rebooting the

Re: bind: Address already in use

2004-10-18 Thread P. George
This is a basic question on socket programming. It is not related to OpenSSL development. In short, you have to call setsockopt(..., SO_REUSEADDR, ...) before calling bind(3) in that program. That'll solve it. thanks. that worked great. sorry for the OT. ;-) - philip

Re: adding a new cipher

2004-10-18 Thread Ng Pheng Siong
On Sun, Oct 17, 2004 at 02:58:56PM +0200, Dr. Stephen Henson wrote: The OP is talking about that though I'm not sure if he'll send us a patch. If he is then I'd agree that adding the OIDs to objects.txt is the way to go. Ok, gotcha: if sending a patch, grab a fixed number, else use

Re: adding a new cipher

2004-10-18 Thread Ng Pheng Siong
On Mon, Oct 18, 2004 at 04:06:07PM +, Paolo Serra wrote: but I think it is not functioning correctly because I've never wrote that my ciphers needs the program that I've added, CCM_AES_encrypt(..), and I fear it calls some other program like aes_cbc_encrypt, as I can see reading the