BSDI ELF knows dlfcn.
[oweals/openssl.git] / STATUS
1
2   OpenSSL STATUS                           Last modified at
3   ______________                           $Date: 2001/03/15 20:36:18 $
4
5   DEVELOPMENT STATE
6
7     o  OpenSSL 0.9.6a: In development...
8                        Beta 1 released on March 13th, 2001
9         HP-UX 10.20 (hpux-parisc-cc)            - PASSED [normal+engine]
10         HP-UX 10.20 (hpux-parisc-gcc)           - PASSED [normal+engine]
11         HP-UX 11.00 32bit (hpux-parisc-gcc)     - FAILED [engine]
12                 "openssl speed rsa1024 -engine cswift" fails unless
13                 libswift.sl is renamed to libswift.so.
14                 [CORRECTED]
15         HP MPE/iX                               - PASSED [presumed normal]
16         Linux 2.2.17 SMP (linux-elf)            - PASSED [normal+engine]
17         Windows (VC-WIN32)                      - FAILED [presumed normal]
18                 Missing line in ms/32all.bat:
19                         perl util\mkfiles.pl >MINFO
20                 [CORRECTED]
21                 In randfile.c, line 214, signed and unsigned int are mixed.
22                 [CORRECTED]
23                 In s_client.c and s_server.c, RAND_status() needs to get
24                 declared (#include <openssl/rand.h>)
25                 [CORRECTED]
26         OpenVMS (any version)                   - FAILED [normal+engine]
27                 Missing instructions in building script.
28                 [CORRECTED]
29         AIX 4.3                                 - FAILED [engine]
30                 Needs -DDSO_DLFCN and -DHAVE_DLFCN_H to work.
31         Irix 6.5.11                             - FAILED [presumed normal]
32                 BN_sqr test fails.
33         solaris64-sparcv9-cc (SunOS 5.8)        - PASSED [normal+engine]
34         BSDI 4.0.1 (bsdi-elf-gcc)               - FAILED [engine]
35                 Needs -DDSO_DLFCN, -DHAVE_DLFCN_H and -ldl to work.
36     o  OpenSSL 0.9.6:  Released on September 24th, 2000
37     o  OpenSSL 0.9.5a: Released on April      1st, 2000
38     o  OpenSSL 0.9.5:  Released on February  28th, 2000
39     o  OpenSSL 0.9.4:  Released on August    09th, 1999
40     o  OpenSSL 0.9.3a: Released on May       29th, 1999
41     o  OpenSSL 0.9.3:  Released on May       25th, 1999
42     o  OpenSSL 0.9.2b: Released on March     22th, 1999
43     o  OpenSSL 0.9.1c: Released on December  23th, 1998
44
45   RELEASE SHOWSTOPPERS
46
47   AVAILABLE PATCHES
48
49     o CA.pl patch (Damien Miller)
50
51   IN PROGRESS
52
53     o Steve is currently working on (in no particular order):
54         ASN1 code redesign, butchery, replacement.
55         EVP cipher enhancement.
56         Proper (or at least usable) certificate chain verification.
57         Private key, certificate and CRL API and implementation.
58         Developing and bugfixing PKCS#7 (S/MIME code).
59         Various X509 issues: character sets, certificate request extensions.
60     o Geoff and Richard are currently working on:
61         ENGINE (the new code that gives hardware support among others).
62     o Richard is currently working on:
63         UTIL (a new set of library functions to support some higher level
64               functionality that is currently missing).
65         Dynamic thread-lock support.
66         Shared library support for VMS.
67
68   NEEDS PATCH
69
70     o  non-blocking socket on AIX
71     o  $(PERL) in */Makefile.ssl
72     o  "Sign the certificate?" - "n" creates empty certificate file
73
74   OPEN ISSUES
75
76     o internal_verify doesn't know about X509.v3 (basicConstraints
77       CA flag ...)
78
79     o  The Makefile hierarchy and build mechanism is still not a round thing:
80
81        1. The config vs. Configure scripts
82           It's the same nasty situation as for Apache with APACI vs.
83           src/Configure. It confuses.
84           Suggestion: Merge Configure and config into a single configure
85                       script with a Autoconf style interface ;-) and remove
86                       Configure and config. Or even let us use GNU Autoconf
87                       itself. Then we can avoid a lot of those platform checks
88                       which are currently in Configure.
89
90     o  Support for Shared Libraries has to be added at least
91        for the major Unix platforms. The details we can rip from the stuff
92        Ralf has done for the Apache src/Configure script. Ben wants the
93        solution to be really simple.
94
95        Status: Ralf will look how we can easily incorporate the
96                compiler PIC and linker DSO flags from Apache
97                into the OpenSSL Configure script.
98
99                Ulf: +1 for using GNU autoconf and libtool (but not automake,
100                     which apparently is not flexible enough to generate
101                     libcrypto)
102
103
104     o  The perl/ stuff needs a major overhaul. Currently it's
105        totally obsolete. Either we clean it up and enhance it to be up-to-date
106        with the C code or we also could replace it with the really nice
107        Net::SSLeay package we can find under
108        http://www.neuronio.pt/SSLeay.pm.html.  Ralf uses this package for a
109        longer time and it works fine and is a nice Perl module. Best would be
110        to convince the author to work for the OpenSSL project and create a
111        Net::OpenSSL or Crypt::OpenSSL package out of it and maintains it for
112        us.
113
114        Status: Ralf thinks we should both contact the author of Net::SSLeay
115                and look how much effort it is to bring Eric's perl/ stuff up
116                to date.
117                Paul +1
118
119   WISHES
120
121     o