Tagging has been done, move on to 0.9.6c-dev.
[oweals/openssl.git] / STATUS
1
2   OpenSSL STATUS                           Last modified at
3   ______________                           $Date: 2001/04/05 17:42:00 $
4
5   DEVELOPMENT STATE
6
7     o  OpenSSL 0.9.6a: Released on April      5th, 2001
8     o  OpenSSL 0.9.6:  Released on September 24th, 2000
9     o  OpenSSL 0.9.5a: Released on April      1st, 2000
10     o  OpenSSL 0.9.5:  Released on February  28th, 2000
11     o  OpenSSL 0.9.4:  Released on August    09th, 1999
12     o  OpenSSL 0.9.3a: Released on May       29th, 1999
13     o  OpenSSL 0.9.3:  Released on May       25th, 1999
14     o  OpenSSL 0.9.2b: Released on March     22th, 1999
15     o  OpenSSL 0.9.1c: Released on December  23th, 1998
16
17   RELEASE SHOWSTOPPERS
18
19   AVAILABLE PATCHES
20
21   IN PROGRESS
22
23     o Steve is currently working on (in no particular order):
24         ASN1 code redesign, butchery, replacement.
25         OCSP
26         EVP cipher enhancement.
27         Enhanced 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     o Geoff and Richard are currently working on:
32         ENGINE (the new code that gives hardware support among others).
33     o Richard is currently working on:
34         UTIL (a new set of library functions to support some higher level
35               functionality that is currently missing).
36         Shared library support for VMS.
37         OCSP
38         Kerberos 5 authentication
39         Constification
40
41   NEEDS PATCH
42
43     o  apps/ca.c: "Sign the certificate?" - "n" creates empty certificate file
44
45     o  OpenSSL_0_9_6-stable:
46        #include <openssl/e_os.h> in exported header files is illegal since
47        e_os.h is suitable only for library-internal use.
48
49     o  Whenever strncpy is used, make sure the resulting string is NULL-terminated
50        or an error is reported
51
52   OPEN ISSUES
53
54     o  crypto/ex_data.c is not really thread-safe and so must be used
55        with care (e.g., extra locking where necessary, or don't call
56        CRYPTO_get_ex_new_index once multiple threads exist).
57        The current API is not suitable for everything that it pretends
58        to offer.
59
60     o  The Makefile hierarchy and build mechanism is still not a round thing:
61
62        1. The config vs. Configure scripts
63           It's the same nasty situation as for Apache with APACI vs.
64           src/Configure. It confuses.
65           Suggestion: Merge Configure and config into a single configure
66                       script with a Autoconf style interface ;-) and remove
67                       Configure and config. Or even let us use GNU Autoconf
68                       itself. Then we can avoid a lot of those platform checks
69                       which are currently in Configure.
70
71     o  Support for Shared Libraries has to be added at least
72        for the major Unix platforms. The details we can rip from the stuff
73        Ralf has done for the Apache src/Configure script. Ben wants the
74        solution to be really simple.
75
76        Status: Ralf will look how we can easily incorporate the
77                compiler PIC and linker DSO flags from Apache
78                into the OpenSSL Configure script.
79
80                Ulf: +1 for using GNU autoconf and libtool (but not automake,
81                     which apparently is not flexible enough to generate
82                     libcrypto)
83
84
85     o  The perl/ stuff needs a major overhaul. Currently it's
86        totally obsolete. Either we clean it up and enhance it to be up-to-date
87        with the C code or we also could replace it with the really nice
88        Net::SSLeay package we can find under
89        http://www.neuronio.pt/SSLeay.pm.html.  Ralf uses this package for a
90        longer time and it works fine and is a nice Perl module. Best would be
91        to convince the author to work for the OpenSSL project and create a
92        Net::OpenSSL or Crypt::OpenSSL package out of it and maintains it for
93        us.
94
95        Status: Ralf thinks we should both contact the author of Net::SSLeay
96                and look how much effort it is to bring Eric's perl/ stuff up
97                to date.
98                Paul +1
99
100   WISHES
101
102     o