[openssl.org #1181] [PATCH] adds RFC 3280 compatible mail attribute

2005-08-04 Thread Michael Bell via RT
__ OpenSSL Project http://www.openssl.org Development Mailing List openssl-dev@openssl.org Automated List Manager [EMAIL PROTECTED]

Re: [openssl.org #1181] [PATCH] adds RFC 3280 compatible mail attribute

2005-08-04 Thread Michael Bell via RT
Stephen Henson via RT wrote: That isn't what RFC3280 says: Conforming implementations generating new certificates with electronic mail addresses MUST use the rfc822Name in the subject alternative name field (section 4.2.1.7) to describe such identities. This isn't a DN component

[openssl.org #1158] missing options in ca.pod and req.pod

2005-07-14 Thread Michael Bell via RT
__ OpenSSL Project http://www.openssl.org Development Mailing List openssl-dev@openssl.org Automated List Manager [EMAIL PROTECTED]

[openssl.org #1159] ./config shared no-deprecated

2005-07-14 Thread Michael Bell via RT
__ OpenSSL Project http://www.openssl.org Development Mailing List openssl-dev@openssl.org Automated List Manager [EMAIL PROTECTED]

[openssl.org #1156] missing const in manpages

2005-07-13 Thread Michael Bell via RT
__ OpenSSL Project http://www.openssl.org Development Mailing List openssl-dev@openssl.org Automated List Manager [EMAIL PROTECTED]

Re: [openssl.org #662] default_md for CRLs

2004-10-28 Thread Michael Bell via RT
Hi, I checked the new 0.9.7e and it still contains the CRL generation bug (means, it still uses MD5 if SHA1 was configured in openssl.cnf). The patch in RT works for 0.9.7e too. The only message is the following one: Hunk #1 succeeded at 1410 (offset -134 lines). This means that the position

[openssl.org #937] uid

2004-08-17 Thread Michael Bell via RT
Hi, nobody reacts, so I file this as a bug to RT. Perhaps uid was commented in OpenSSL 0.9.6 because uid was illegally used as shortname for x500UniqueIdentifier. This was corrected in 0.9.7 but perhaps the real uid was forgotten. Michael

[openssl.org #779] multivalued RDNs for -subj

2003-11-25 Thread Michael Bell via RT
Hi, I added support for multivalued RDNs to -subj in ca.c. I added this support to req.c too. Nevertheless it was tested with openssl ca. The new code can be activated with the switch -multivalue-rdn. If the switch is too long then please reduce it to something like -multirdn. The diffs were

[openssl.org #662] default_md for CRLs

2003-07-14 Thread Michael Bell via RT
Hi, I tried to set sha1 for openssl ca -gencrl but it doesn't work. I checked the source code (0.9.8 and 0.9.7) and found that the req section in apps/ca.c contains the following lines: lines 1012-1017: if ((md == NULL) ((md=NCONF_get_string(conf, section,ENV_DEFAULT_MD)) ==

[openssl.org #559] X509V3_extensions_print

2003-03-31 Thread Michael Bell via RT
Hi, I tried to output the extensions without a title: X509V3_extensions_print (out, NULL, ci-extensions, 0, 0); The code fails because of the following: 1. title is empty -- indent will not be incremented 2. if (BIO_printf(bp,%*s,indent, ) = 0) return 0; This printf tries to print an

[openssl.org #560] fingerprint in apps/crl.c

2003-03-31 Thread Michael Bell via RT
Hi, the fingerprint option in apps/crl.c is not documented in 0.9.7a if the online help is used. The simple patch is attached. Best regards Michael -- --- Michael Bell Email: [EMAIL PROTECTED] ZE Computer- und

[openssl.org #556] x509 -setalias

2003-03-28 Thread Michael Bell via RT
Hi, I discovered that -setalias in apps/x509.c is tested twice. It's not a real bug but it is unnecessary. I use 0.9.7a. Best regards Michael -- --- Michael Bell Email: [EMAIL PROTECTED] ZE Computer- und

[openssl.org #344] Re: Patch for Win2000 Smartcardlogin

2002-11-15 Thread Michael Bell via RT
Dr. Stephen Henson wrote: An early version of the code is now in 0.9.8-dev. Check out the docs in ASN1_generate_nconf(3) and doc/openssl.txt . Thanks a lot. It looks great. One question - I checked crypto/objects/objects.txt and see that the OIDs for Microsoft's smartcardlogin are still not

[openssl.org #67] openssl req -nameopts fails

2002-06-03 Thread Michael Bell via RT
Hi, I used -nameopt with openssl req and the options will be ignored if req is used with -text. I checked the code of req.c and wrote some patches. I used the function set_cert_ex in apps/apps.c because the options are nearly the same and a non-existing option causes no errors or wrong

[openssl.org #69] Re: Problem with openssl-0.9.7-stable

2002-06-03 Thread Michael Bell via RT
Hi, I checked the code in crypto/evp/evp_test.c and it looks like sstrsep do the same like strsep on Linux. So perhaps it was a typo and the code was only tested under Linux. I used sstrsep insteed of strsep. OpenSSL compiles and make test succeed. The patch is like follows:

Re: [openssl.org #67] openssl req -nameopts fails

2002-06-03 Thread Michael Bell via RT
Richard Levitte via RT schrieb: Please resend a patch that is generated using one of the options -u (unified context diff, which is prefered) or -c (context diff). Ok, I used diff -u. Michael -- --- Michael Bell