[openssl.org #1255] about S/MIME sign code.

2005-12-19 Thread [EMAIL PROTECTED] via RT
Hi. I'm using 0.9.8a on NetBSD 1.x. crypto/pkcs7/pk7_smime.c In case, user selected type is signed and detached, never setting type pkcs7 object, in time PKCS7_dataInit() called. crypto/pkcs7/pk7_doit.c in that's case, 293 line call and make BIO_mem buffer, because 287 line never called. thanks

Adding TLS_RSA_WITH_RC4_128_SHA to openSSL 0.9.6h

2005-12-19 Thread kiato (sent by Nabble.com)
Hi, we're using openSSL 0.9.6h version and i would like to add a TLS cipher, TLS_RSA_WITH_RC4_128_SHA how will i do this. I have added the new ciphersuite to ssl3_ciphers[] in s3_lib.c, I've added the following lines:                 {/         1,         TLS1_TXT_RSA_RC4_128_SHA,         TLS1_C

[PATCH] bug in crypto/pqueue/pqueue.c

2005-12-19 Thread nagendra modadugu
diff -u -r1.5 pqueue.c --- crypto/pqueue/pqueue.c 7 Jun 2005 22:21:14 - 1.5 +++ crypto/pqueue/pqueue.c 20 Dec 2005 01:48:27 - @@ -184,7 +184,7 @@ } /* check the one last node */ - if ( memcpy(next->priority, prio64be,8) ==0) + if ( memcm

Re: [PATCH] bug in crypto/pqueue/pqueue.c

2005-12-19 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Mon, 19 Dec 2005 18:35:51 -0800, nagendra modadugu <[EMAIL PROTECTED]> said: nagendra> diff -u -r1.5 pqueue.c nagendra> --- crypto/pqueue/pqueue.c 7 Jun 2005 22:21:14 - 1.5 nagendra> +++ crypto/pqueue/pqueue.c 20 Dec 2005 01:48:27 - nagend