[openssl.org #151] S/MIME implemementation doesn't follow MIME spec. Patch included.

2002-07-25 Thread Stephen Henson via RT
[[EMAIL PROTECTED] - Thu Jul 18 22:15:39 2002]: > In message <[EMAIL PROTECTED]> on Thu, 18 Jul 2002 21:07:10 > +0100, Ben Laurie <[EMAIL PROTECTED]> said: > > ben> The issue as reported to me was that the body had CRLF, but > headers LF > ben> only... > ben> > ben> Seems to me they should be c

Kerberos Ciphersuite IDs

2002-07-25 Thread Andreas Sterbenz
Hi, I am looking at ssl/ssl3.h from 0.9.7-beta2 and the Kerberos ciphersuite IDs don't seem to match the IDs given in RFC2712. I assume I am missing something obvious, could someone please enlighten me? Thanks, Andreas. === ::ssl/ssl3.h:: #define SSL3_CK_KRB5_DES_40_CBC_SHA 0x0300

openpgp support in openssl

2002-07-25 Thread Niels Provos
Hi, I recently noticed that there is an OpenPGP library that builds on top of OpenSSL, http://www.cypherspace.org/openpgp/zerucha/. It seems currently unmaintained. However, the source code is fairly small and might be benefitial to have in OpenSSL. Is anyone here interested in look at OpenPGP

Re: SMIME question

2002-07-25 Thread Ken Hirsch
Maya wrote: >When I create signed or encrypted message, I get as input param SMTP header + MIME message. >Do I have to signed and encrypt both (SMTP header + MIME message) or just the second part? >What should be the SMTP header of the Signed or(and) Encrypted message? As others have noted, you

[openssl.org #167] 0.9.7 latest snapshot...minor bug in apps\x509.c

2002-07-25 Thread via RT
Lines 918-919: if (pk->type == EVP_PKEY_DSA) digest=EVP_dss1(); ..should be: #ifndef OPENSSL_NO_DSA if (pk->type == EVP_PKEY_DSA) digest=EVP_dss1(); #endif ...otherwise you get "unresolved external" errors when linking Med venlig hilsen / Best regards Kim Hellan KMD /

Re: SMIME question

2002-07-25 Thread Zakk
>Hello! > >I used SMIME command tool to create some SMIME messages. > >I can create signed, encrypted message and to verify and decrypt them with my >functions. > >Now I want to make this messages fully compliant with existing mail clients: >1. My functions to can verify and decrypt message

Re: SMIME question

2002-07-25 Thread Lutz Jaenicke
On Thu, Jul 25, 2002 at 01:28:44AM -0400, John Viega wrote: > It's impossible to make an interoperable, signed S/MIME message with > OpenSSL at the moment due to a dumb bug in the OpenSSL implementation. > Go figure, no one actually seems to USE the OpenSSL S/MIME stuff > (perhaps not just because