]> git.ipfire.org Git - thirdparty/openssl.git/blame - CHANGES
Minor cygwin update.
[thirdparty/openssl.git] / CHANGES
CommitLineData
81a6c781 1
f1c236f8 2 OpenSSL CHANGES
651d0aff
RE
3 _______________
4
d5f686d8 5 Changes between 0.9.7e and 0.9.8 [xx XXX xxxx]
4d94ae00 6
ea681ba8
AP
7 *) RC4 performance overhaul on modern architectures/implementations, such
8 as Intel P4, IA-64 and AMD64.
9 [Andy Polyakov]
10
401ee37a
DSH
11 *) New utility extract-section.pl. This can be used specify an alternative
12 section number in a pod file instead of having to treat each file as
13 a separate case in Makefile. This can be done by adding two lines to the
14 pod file:
15
16 =for comment openssl_section:XXX
17
18 The blank line is mandatory.
19
20 [Steve Henson]
21
826a42a0
DSH
22 *) New arguments -certform, -keyform and -pass for s_client and s_server
23 to allow alternative format key and certificate files and passphrase
24 sources.
25 [Steve Henson]
26
5d7c222d
DSH
27 *) New structure X509_VERIFY_PARAM which combines current verify parameters,
28 update associated structures and add various utility functions.
29
30 Add new policy related verify parameters, include policy checking in
31 standard verify code. Enhance 'smime' application with extra parameters
32 to support policy checking and print out.
33 [Steve Henson]
34
30fe028f
GT
35 *) Add a new engine to support VIA PadLock ACE extensions in the VIA C3
36 Nehemiah processors. These extensions support AES encryption in hardware
37 as well as RNG (though RNG support is currently disabled).
38 [Michal Ludvig <michal@logix.cz>, with help from Andy Polyakov]
39
df11e1e9
GT
40 *) Deprecate BN_[get|set]_params() functions (they were ignored internally).
41 [Geoff Thorpe]
42
ad500340
AP
43 *) New FIPS 180-2 algorithms, SHA-224/-256/-384/-512 are implemented.
44 [Andy Polyakov and a number of other people]
45
e14f4aab
AP
46 *) Improved PowerPC platform support. Most notably BIGNUM assembler
47 implementation contributed by IBM.
48 [Suresh Chari, Peter Waltenberg, Andy Polyakov]
49
bcfea9fb
GT
50 *) The new 'RSA_generate_key_ex' function now takes a BIGNUM for the public
51 exponent rather than 'unsigned long'. There is a corresponding change to
52 the new 'rsa_keygen' element of the RSA_METHOD structure.
53 [Jelte Jansen, Geoff Thorpe]
54
d5f686d8
BM
55 *) Functionality for creating the initial serial number file is now
56 moved from CA.pl to the 'ca' utility with a new option -create_serial.
57
58 (Before OpenSSL 0.9.7e, CA.pl used to initialize the serial
59 number file to 1, which is bound to cause problems. To avoid
60 the problems while respecting compatibility between different 0.9.7
61 patchlevels, 0.9.7e employed 'openssl x509 -next_serial' in
62 CA.pl for serial number initialization. With the new release 0.9.8,
63 we can fix the problem directly in the 'ca' utility.)
64674bcc
DSH
64 [Steve Henson]
65
3a87a9b9
GT
66 *) Reduced header interdepencies by declaring more opaque objects in
67 ossl_typ.h. As a consequence, including some headers (eg. engine.h) will
68 give fewer recursive includes, which could break lazy source code - so
69 this change is covered by the OPENSSL_NO_DEPRECATED symbol. As always,
70 developers should define this symbol when building and using openssl to
71 ensure they track the recommended behaviour, interfaces, [etc], but
72 backwards-compatible behaviour prevails when this isn't defined.
73 [Geoff Thorpe]
74
bf5773fa
DSH
75 *) New function X509_POLICY_NODE_print() which prints out policy nodes.
76 [Steve Henson]
77
216659eb
DSH
78 *) Add new EVP function EVP_CIPHER_CTX_rand_key and associated functionality.
79 This will generate a random key of the appropriate length based on the
80 cipher context. The EVP_CIPHER can provide its own random key generation
81 routine to support keys of a specific form. This is used in the des and
82 3des routines to generate a key of the correct parity. Update S/MIME
83 code to use new functions and hence generate correct parity DES keys.
84 Add EVP_CHECK_DES_KEY #define to return an error if the key is not
85 valid (weak or incorrect parity).
86 [Steve Henson]
87
e1a27eb3
DSH
88 *) Add a local set of CRLs that can be used by X509_verify_cert() as well
89 as looking them up. This is useful when the verified structure may contain
90 CRLs, for example PKCS#7 signedData. Modify PKCS7_verify() to use any CRLs
91 present unless the new PKCS7_NO_CRL flag is asserted.
92 [Steve Henson]
93
6446e0c3
DSH
94 *) Extend ASN1 oid configuration module. It now additionally accepts the
95 syntax:
96
97 shortName = some long name, 1.2.3.4
98 [Steve Henson]
99
5c98b2ca
GT
100 *) Reimplemented the BN_CTX implementation. There is now no more static
101 limitation on the number of variables it can handle nor the depth of the
102 "stack" handling for BN_CTX_start()/BN_CTX_end() pairs. The stack
103 information can now expand as required, and rather than having a single
104 static array of bignums, BN_CTX now uses a linked-list of such arrays
105 allowing it to expand on demand whilst maintaining the usefulness of
106 BN_CTX's "bundling".
107 [Geoff Thorpe]
108
46ef873f
GT
109 *) Add a missing BN_CTX parameter to the 'rsa_mod_exp' callback in RSA_METHOD
110 to allow all RSA operations to function using a single BN_CTX.
111 [Geoff Thorpe]
112
4acc3e90
DSH
113 *) Preliminary support for certificate policy evaluation and checking. This
114 is initially intended to pass the tests outlined in "Conformance Testing
115 of Relying Party Client Certificate Path Processing Logic" v1.07.
116 [Steve Henson]
117
7f663ce4
GT
118 *) bn_dup_expand() has been deprecated, it was introduced in 0.9.7 and
119 remained unused and not that useful. A variety of other little bignum
120 tweaks and fixes have also been made continuing on from the audit (see
121 below).
122 [Geoff Thorpe]
123
875a644a
RL
124 *) Constify all or almost all d2i, c2i, s2i and r2i functions, along with
125 associated ASN1, EVP and SSL functions and old ASN1 macros.
7f663ce4 126 [Richard Levitte]
875a644a 127
b6358c89
GT
128 *) BN_zero() only needs to set 'top' and 'neg' to zero for correct results,
129 and this should never fail. So the return value from the use of
130 BN_set_word() (which can fail due to needless expansion) is now deprecated;
131 if OPENSSL_NO_DEPRECATED is defined, BN_zero() is a void macro.
132 [Geoff Thorpe]
133
9e051bac
GT
134 *) BN_CTX_get() should return zero-valued bignums, providing the same
135 initialised value as BN_new().
136