Ref: Message-ID: <20000320070111.A90876@wiz.Sendmail.COM>
[openssl.git] / STATUS
1
2   OpenSSL STATUS                           Last modified at
3   ______________                           $Date: 2000/03/20 15:56:14 $
4
5   DEVELOPMENT STATE
6
7     o  OpenSSL 0.9.5a: Under development...
8                        0.9.5a-beta1 is available.
9                         VC-Win32 (MSVC6SP3, nasm)       - failed compilation
10                         FreeBSD-elf (i686-pc-freebsd3.2)- failed compilation
11     o  OpenSSL 0.9.5:  Released on February 28th, 2000
12     o  OpenSSL 0.9.4:  Released on August   09th, 1999
13     o  OpenSSL 0.9.3a: Released on May      29th, 1999
14     o  OpenSSL 0.9.3:  Released on May      25th, 1999
15     o  OpenSSL 0.9.2b: Released on March    22th, 1999
16     o  OpenSSL 0.9.1c: Released on December 23th, 1998
17
18   RELEASE SHOWSTOPPERS
19
20   AVAILABLE PATCHES
21
22     o CA.pl patch (Damien Miller)
23
24   IN PROGRESS
25
26     o Steve is currently working on (in no particular order):
27         Proper (or at least usable) certificate chain verification.
28         Private key, certificate and CRL API and implementation.
29         Developing and bugfixing PKCS#7 (S/MIME code).
30         Various X509 issues: character sets, certificate request extensions.
31         Documentation for the openssl utility.
32
33   NEEDS PATCH
34
35     o  non-blocking socket on AIX
36     o  $(PERL) in */Makefile.ssl
37     o  "Sign the certificate?" - "n" creates empty certificate file
38
39   OPEN ISSUES
40
41     o internal_verify doesn't know about X509.v3 (basicConstraints
42       CA flag ...)
43
44     o  The Makefile hierarchy and build mechanism is still not a round thing:
45
46        1. The config vs. Configure scripts
47           It's the same nasty situation as for Apache with APACI vs.
48           src/Configure. It confuses.
49           Suggestion: Merge Configure and config into a single configure
50                       script with a Autoconf style interface ;-) and remove
51                       Configure and config. Or even let us use GNU Autoconf
52                       itself. Then we can avoid a lot of those platform checks
53                       which are currently in Configure.
54
55     o  Support for Shared Libraries has to be added at least
56        for the major Unix platforms. The details we can rip from the stuff
57        Ralf has done for the Apache src/Configure script. Ben wants the
58        solution to be really simple.
59
60        Status: Ralf will look how we can easily incorporate the
61                compiler PIC and linker DSO flags from Apache
62                into the OpenSSL Configure script.
63
64                Ulf: +1 for using GNU autoconf and libtool (but not automake,
65                     which apparently is not flexible enough to generate
66                     libcrypto)
67
68
69     o  The perl/ stuff needs a major overhaul. Currently it's
70        totally obsolete. Either we clean it up and enhance it to be up-to-date
71        with the C code or we also could replace it with the really nice
72        Net::SSLeay package we can find under
73        http://www.neuronio.pt/SSLeay.pm.html.  Ralf uses this package for a
74        longer time and it works fine and is a nice Perl module. Best would be
75        to convince the author to work for the OpenSSL project and create a
76        Net::OpenSSL or Crypt::OpenSSL package out of it and maintains it for
77        us.
78
79        Status: Ralf thinks we should both contact the author of Net::SSLeay
80                and look how much effort it is to bring Eric's perl/ stuff up
81                to date.
82                Paul +1
83
84     o The EVP and ASN1 stuff is a mess. Currently you have one EVP_CIPHER
85       structure for each cipher. This may make sense for things like DES but
86       for variable length ciphers like RC2 and RC4 it is NBG. Need a way to
87       use the EVP interface and set up the cipher parameters. The ASN1 stuff
88       is also foo wrt ciphers whose AlgorithmIdentifier has more than just
89       an IV in it (e.g. RC2, RC5). This also means that EVP_Seal and EVP_Open
90       don't work unless the key length matches the fixed value (some vendors
91       use a key length decided by the size of the RSA encrypted key and expect
92       RC2 to adapt).
93
94     o ERR_error_string(..., buf) does not know how large buf is,
95       there should be ERR_error_string_n(..., buf, bufsize)
96       or similar.
97
98   WISHES
99
100     o