First cut for a very conservative source tree cleanup:
[openssl.git] / STATUS
1
2   OpenSSL STATUS                           Last modified at
3   ______________                           $Date: 1999/02/01 08:18:31 $
4
5   DEVELOPMENT STATE
6
7     o  OpenSSL 0.9.2:  Under development.
8     o  OpenSSL 0.9.1c: Released on December 23th, 1998
9
10   RELEASE SHOWSTOPPERS
11
12   AVAILABLE PATCHES
13
14   IN PROGRESS
15
16     o Steve is currently working on:
17         X509 V3 extension code including:
18         1. Support for the more common PKIX extensions.
19         2. Proper (or at least usable) certificate chain verification.
20         3. Support in standard applications (req, x509, ca).
21         4. Documentation on how all the above works.
22         Next on the list is probably PKCS#12 integration.
23
24     o Mark is currently working on:
25         Folding in any changes that are in the C2Net code base that were
26         not in the original SSLeay-0.9.1.b release.  Plus other minor
27         tidying.
28
29   NEEDS PATCH
30
31   OPEN ISSUES
32
33     o  The Makefile hierarchy and build mechanism is still not a round thing:
34
35        1. The config vs. Configure scripts
36           It's the same nasty situation as for Apache with APACI vs.
37           src/Configure. It confuses.
38           Suggestion: Merge Configure and config into a single configure
39                       script with a Autoconf style interface ;-) and remove
40                       Configure and config. Or even let us use GNU Autoconf
41                       itself. Then we can avoid a lot of those platform checks
42                       which are currently in Configure.
43
44        2. The xxx.org -> xxx.h generation:
45           It's not obvious for which file xxx.org is the source.
46           Suggestion: Rename xxx.org to xxx.h.in (Autoconf style), this way
47                       one sees that xxx.h.in is the input for xxx.h
48
49           Status: Mark +1
50
51     o  The installation under "make install" produces a very
52        installation layout: $prefix/certs and $prefix/private dirs.  That's
53        not nice. Ralf suggests to move the two certs and private dirs either
54        to $prefix/etc/, $prefix/lib/ or $prefix/share. Alternatively
55        we could also not install the certs at all.
56
57        Status: Ralf +1 for both not installing the certs at all and
58                        moving it to $prefix/etc/. +0 for $prefix/lib/
59                        and $prefix/share.
60                Paul: why is it not nice?
61                Ralf: because it messes up the install dir when
62                      $prefix is not a dedicated area like /usr/local/ssl.
63                      When we move them to a standard subdir like
64                      etc/ lib/ or share/ we don't mess up things
65                      when $prefix is /usr or /usr/local, etc.
66                      Additionally it makes package vendors life
67                      easier....
68
69     o  Support for Shared Libraries has to be added at least
70        for the major Unix platforms. The details we can rip from the stuff
71        Ralf has done for the Apache src/Configure script. Ben wants the
72        solution to be really simple.
73
74        Status: Ralf will look how we can easily incorporate the
75                compiler PIC and linker DSO flags from Apache
76                into the OpenSSL Configure script.
77
78     o  The perl/ stuff needs a major overhaul. Currently it's
79        totally obsolete. Either we clean it up and enhance it to be up-to-date
80        with the C code or we also could replace it with the really nice
81        Net::SSLeay package we can find under
82        http://www.neuronio.pt/SSLeay.pm.html.  Ralf uses this package for a
83        longer time and it works fine and is a nice Perl module. Best would be
84        to convince the author to work for the OpenSSL project and create a
85        Net::OpenSSL or Crypt::OpenSSL package out of it and maintains it for
86        us.
87
88        Status: Ralf thinks we should both contact the author of Net::SSLeay
89                and look how much effort it is to bring Eric's perl/ stuff up
90                to date.
91                Paul +1
92
93     o The EVP and ASN1 stuff is a mess. Currently you have one EVP_CIPHER
94       structure for each cipher. This may make sense for things like DES but
95       for variable length ciphers like RC2 and RC4 it is NBG. Need a way to
96       use the EVP interface and set up the cipher parameters. The ASN1 stuff
97       is also foo wrt ciphers whose AlgorithmIdentifier has more than just
98       an IV in it (e.g. RC2, RC5). This also means that EVP_Seal and EVP_Open
99       don't work unless the key length matches the fixed value (some vendors
100       use a key length decided by the size of the RSA encrypted key and expect
101       RC2 to adapt).
102
103   WISHES
104
105     o  Damien Miller:
106        "How about making the each of the locations compile-time defined. I
107        would like to (for example) put binaries in /usr/bin, configuration
108        data, certs and keys in /etc/openssl/certs and /etc/openssl/keys, etc.
109        This would also be a great boon to binary package makers.  The
110        SSLeay-0.9.1b RPM already includes some patches which do some of this.
111        I can forward them if you wish."
112