]> git.ipfire.org Git - thirdparty/openssl.git/blame - CHANGES
Add CRYPTO_MDEBUG_ABORT to abort() is there are any memory leaks. This will
[thirdparty/openssl.git] / CHANGES
CommitLineData
81a6c781 1
f1c236f8 2 OpenSSL CHANGES
651d0aff
RE
3 _______________
4
837f2fc7 5 Changes between 0.9.8j and 0.9.9 [xx XXX xxxx]
3ff55e96 6
363bd0b4
DSH
7 *) Add a $gcc_devteam_warn option to Configure. The idea is that any code
8 committed to OpenSSL should pass this lot as a minimum.
9 [Steve Henson]
10
12bf56c0
DSH
11 *) Add session ticket override functionality for use by EAP-FAST.
12 [Jouni Malinen <j@w1.fi>]
13
87d52468
DSH
14 *) Modify HMAC functions to return a value. Since these can be implemented
15 in an ENGINE errors can occur.
16 [Steve Henson]
17
1ea6472e
BL
18 *) Type-checked OBJ_bsearch_ex.
19 [Ben Laurie]
20
babb3798
BL
21 *) Type-checked OBJ_bsearch. Also some constification necessitated
22 by type-checking. Still to come: TXT_DB, bsearch(?),
23 OBJ_bsearch_ex, qsort, CRYPTO_EX_DATA, ASN1_VALUE, ASN1_STRING,
1ea6472e
BL
24 CONF_VALUE.
25 [Ben Laurie]
babb3798 26
87d3a0cd
DSH
27 *) New function OPENSSL_gmtime_adj() to add a specific number of days and
28 seconds to a tm structure directly, instead of going through OS
29 specific date routines. This avoids any issues with OS routines such
30 as the year 2038 bug. New *_adj() functions for ASN1 time structures
31 and X509_time_adj_ex() to cover the extended range. The existing
32 X509_time_adj() is still usable and will no longer have any date issues.
33 [Steve Henson]
34
d43c4497
DSH
35 *) Delta CRL support. New use deltas option which will attempt to locate
36 and search any appropriate delta CRLs available.
37
38 This work was sponsored by Google.
39 [Steve Henson]
40
4b96839f
DSH
41 *) Support for CRLs partitioned by reason code. Reorganise CRL processing
42 code and add additional score elements. Validate alternate CRL paths
43 as part of the CRL checking and indicate a new error "CRL path validation
44 error" in this case. Applications wanting additional details can use
45 the verify callback and check the new "parent" field. If this is not
46 NULL CRL path validation is taking place. Existing applications wont
47 see this because it requires extended CRL support which is off by
48 default.
49
50 This work was sponsored by Google.
51 [Steve Henson]
52
249a77f5
DSH
53 *) Support for freshest CRL extension.
54
55 This work was sponsored by Google.
56 [Steve Henson]
57
d0fff69d
DSH
58 *) Initial indirect CRL support. Currently only supported in the CRLs
59 passed directly and not via lookup. Process certificate issuer
60 CRL entry extension and lookup CRL entries by bother issuer name
4b96839f 61 and serial number. Check and process CRL issuer entry in IDP extension.
d0fff69d
DSH
62
63 This work was sponsored by Google.
64 [Steve Henson]
65
9d84d4ed
DSH
66 *) Add support for distinct certificate and CRL paths. The CRL issuer
67 certificate is validated separately in this case. Only enabled if
68 an extended CRL support flag is set: this flag will enable additional
69 CRL functionality in future.
70
71 This work was sponsored by Google.
72 [Steve Henson]
9d84d4ed 73
002e66c0
DSH
74 *) Add support for policy mappings extension.
75
76 This work was sponsored by Google.
77 [Steve Henson]
78
e9746e03
DSH
79 *) Fixes to pathlength constraint, self issued certificate handling,
80 policy processing to align with RFC3280 and PKITS tests.
81
82 This work was sponsored by Google.
83 [Steve Henson]
84
85 *) Support for name constraints certificate extension. DN, email, DNS
86 and URI types are currently supported.
87
88 This work was sponsored by Google.
89 [Steve Henson]
90
4c329696
GT
91 *) To cater for systems that provide a pointer-based thread ID rather
92 than numeric, deprecate the current numeric thread ID mechanism and
93 replace it with a structure and associated callback type. This
94 mechanism allows a numeric "hash" to be extracted from a thread ID in
95 either case, and on platforms where pointers are larger than 'long',
96 mixing is done to help ensure the numeric 'hash' is usable even if it
97 can't be guaranteed unique. The default mechanism is to use "&errno"
98 as a pointer-based thread ID to distinguish between threads.
99
100 Applications that want to provide their own thread IDs should now use
101 CRYPTO_THREADID_set_callback() to register a callback that will call
102 either CRYPTO_THREADID_set_numeric() or CRYPTO_THREADID_set_pointer().
103
2ecd2ede
BM
104 Note that ERR_remove_state() is now deprecated, because it is tied
105 to the assumption that thread IDs are numeric. ERR_remove_state(0)
106 to free the current thread's error state should be replaced by
107 ERR_remove_thread_state(NULL).
108
4c329696
GT
109 (This new approach replaces the functions CRYPTO_set_idptr_callback(),
110 CRYPTO_get_idptr_callback(), and CRYPTO_thread_idptr() that existed in
111 OpenSSL 0.9.9-dev between June 2006 and August 2008. Also, if an
112 application was previously providing a numeric thread callback that
113 was inappropriate for distinguishing threads, then uniqueness might
114 have been obtained with &errno that happened immediately in the
115 intermediate development versions of OpenSSL; this is no longer the
116 case, the numeric thread callback will now override the automatic use
117 of &errno.)
118 [Geoff Thorpe, with help from Bodo Moeller]
119
5cbd2033
DSH
120 *) Initial support for different CRL issuing certificates. This covers a
121 simple case where the self issued certificates in the chain exist and
122 the real CRL issuer is higher in the existing chain.
e9746e03
DSH
123
124 This work was sponsored by Google.
5cbd2033
DSH
125 [Steve Henson]
126
5ce278a7
BL
127 *) Removed effectively defunct crypto/store from the build.
128 [Ben Laurie]
129
130 *) Revamp of STACK to provide stronger type-checking. Still to come:
131 TXT_DB, bsearch(?), OBJ_bsearch, qsort, CRYPTO_EX_DATA, ASN1_VALUE,
132 ASN1_STRING, CONF_VALUE.
133 [Ben Laurie]
134
8671b898
BL
135 *) Add a new SSL_MODE_RELEASE_BUFFERS mode flag to release unused buffer
136 RAM on SSL connections. This option can save about 34k per idle SSL.
137 [Nick Mathewson]
138
3c1d6bbc
BL
139 *) Revamp of LHASH to provide stronger type-checking. Still to come:
140 STACK, TXT_DB, bsearch, qsort.
141 [Ben Laurie]
142
8931b30d
DSH
143 *) Initial support for Cryptographic Message Syntax (aka CMS) based
144 on RFC3850, RFC3851 and RFC3852. New cms directory and cms utility,
fd47c361 145 support for data, signedData, compressedData, digestedData and
eb9d8d8c
DSH
146 encryptedData, envelopedData types included. Scripts to check against
147 RFC4134 examples draft and interop and consistency checks of many
148 content types and variants.
8931b30d
DSH
149 [Steve Henson]
150
3df93571 151 *) Add options to enc utility to support use of zlib compression BIO.
8931b30d
DSH
152 [Steve Henson]
153
73980531
DSH
154 *) Extend mk1mf to support importing of options and assembly language
155 files from Configure script, currently only included in VC-WIN32.
156 The assembly language rules can now optionally generate the source
157 files from the associated perl scripts.
158 [Steve Henson]
159
0e1dba93
DSH
160 *) Implement remaining functionality needed to support GOST ciphersuites.
161 Interop testing has been performed using CryptoPro implementations.
162 [Victor B. Wagner <vitus@cryptocom.ru>]
163
0023adb4
AP
164 *) s390x assembler pack.
165 [Andy Polyakov]
166
4c7c5ff6
AP
167 *) ARMv4 assembler pack. ARMv4 refers to v4 and later ISA, not CPU
168 "family."
169 [Andy Polyakov]
170
761772d7
BM
171 *) Implement Opaque PRF Input TLS extension as specified in
172 draft-rescorla-tls-opaque-prf-input-00.txt. Since this is not an
173 official specification yet and no extension type assignment by
174 IANA exists, this extension (for now) will have to be explicitly
175 enabled when building OpenSSL by providing the extension number
176 to use. For example, specify an option
177
178 -DTLSEXT_TYPE_opaque_prf_input=0x9527
179
180 to the "config" or "Configure" script to enable the extension,
181 assuming extension number 0x9527 (which is a completely arbitrary
182 and unofficial assignment based on the MD5 hash of the Internet
183 Draft). Note that by doing so, you potentially lose
184 interoperability with other TLS implementations since these might
185 be using the same extension number for other purposes.
186
187 SSL_set_tlsext_opaque_prf_input(ssl, src, len) is used to set the
188 opaque PRF input value to use in the handshake. This will create
189 an interal copy of the length-'len' string at 'src', and will
190 return non-zero for success.
191
192 To get more control and flexibility, provide a callback function
193 by using
194
195 SSL_CTX_set_tlsext_opaque_prf_input_callback(ctx, cb)
196 SSL_CTX_set_tlsext_opaque_prf_input_callback_arg(ctx, arg)
197
198 where
199
200 int (*cb)(SSL *, void *peerinput, size_t len, void *arg);
201 void *arg;
202
203 Callback function 'cb' will be called in handshakes, and is
204 expected to use SSL_set_tlsext_opaque_prf_input() as appropriate.
205 Argument 'arg' is for application purposes (the value as given to
206 SSL_CTX_set_tlsext_opaque_prf_input_callback_arg() will directly
207 be provided to the callback function). The callback function
208 has to return non-zero to report success: usually 1 to use opaque
209 PRF input just if possible, or 2 to enforce use of the opaque PRF
210 input. In the latter case, the library will abort the handshake
211 if opaque PRF input is not successfully negotiated.
212
213 Arguments 'peerinput' and 'len' given to the callback function
214 will always be NULL and 0 in the case of a client. A server will
215 see the client's opaque PRF input through these variables if
216 available (NULL and 0 otherwise). Note that if the server
217 provides an opaque PRF input, the length must be the same as the
218 length of the client's opaque PRF input.
219
220 Note that the callback function will only be called when creating
221 a new session (session resumption can resume whatever was
222 previously negotiated), and will not be called in SSL 2.0
223 handshakes; thus, SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv2) or
224 SSL_set_options(ssl, SSL_OP_NO_SSLv2) is especially recommended
225 for applications that need to enforce opaque PRF input.
226
227 [Bodo Moeller]
228
81025661
DSH
229 *) Update ssl code to support digests other than SHA1+MD5 for handshake
230 MAC.
231
232 [Victor B. Wagner <vitus@cryptocom.ru>]
233
6434abbf
DSH
234 *) Add RFC4507 support to OpenSSL. This includes the corrections in
235 RFC4507bis. The encrypted ticket format is an encrypted encoded
236 SSL_SESSION structure, that way new session features are automatically
237 supported.
238
ba0e826d
DSH
239 If a client application caches session in an SSL_SESSION structure
240 support is transparent because tickets are now stored in the encoded
241 SSL_SESSION.
242
243 The SSL_CTX structure automatically generates keys for ticket
244 protection in servers so again support should be possible
6434abbf
DSH
245 with no application modification.
246
247 If a client or server wishes to disable RFC4507 support then the option
248 SSL_OP_NO_TICKET can be set.
249
250 Add a TLS extension debugging callback to allow the contents of any client
251 or server extensions to be examined.
ec5d7473
DSH
252
253 This work was sponsored by Google.
6434abbf
DSH
254 [Steve Henson]
255
3c07d3a3
DSH
256 *) Final changes to avoid use of pointer pointer casts in OpenSSL.
257 OpenSSL should now compile cleanly on gcc 4.2
258 [Peter Hartley <pdh@utter.chaos.org.uk>, Steve Henson]
259
b948e2c5
DSH
260 *) Update SSL library to use new EVP_PKEY MAC API. Include generic MAC
261 support including streaming MAC support: this is required for GOST
262 ciphersuite support.
263 [Victor B. Wagner <vitus@cryptocom.ru>, Steve Henson]
264
9cfc8a9d
DSH
265 *) Add option -stream to use PKCS#7 streaming in smime utility. New
266 function i2d_PKCS7_bio_stream() and PEM_write_PKCS7_bio_stream()
267 to output in BER and PEM format.
268 [Steve Henson]
269
47b71e6e
DSH
270 *) Experimental support for use of HMAC via EVP_PKEY interface. This
271 allows HMAC to be handled via the EVP_DigestSign*() interface. The
272 EVP_PKEY "key" in this case is the HMAC key, potentially allowing
2022cfe0
DSH
273 ENGINE support for HMAC keys which are unextractable. New -mac and
274 -macopt options to dgst utility.
47b71e6e
DSH
275 [Steve Henson]
276
d952c79a
DSH
277 *) New option -sigopt to dgst utility. Update dgst to use
278 EVP_Digest{Sign,Verify}*. These two changes make it possible to use
279 alternative signing paramaters such as X9.31 or PSS in the dgst
280 utility.
281 [Steve Henson]
282
fd5bc65c
BM
283 *) Change ssl_cipher_apply_rule(), the internal function that does
284 the work each time a ciphersuite string requests enabling
285 ("foo+bar"), moving ("+foo+bar"), disabling ("-foo+bar", or
286 removing ("!foo+bar") a class of ciphersuites: Now it maintains
287 the order of disabled ciphersuites such that those ciphersuites
288 that most recently went from enabled to disabled not only stay
289 in order with respect to each other, but also have higher priority
290 than other disabled ciphersuites the next time ciphersuites are
291 enabled again.
292
293 This means that you can now say, e.g., "PSK:-PSK:HIGH" to enable
294 the same ciphersuites as with "HIGH" alone, but in a specific
295 order where the PSK ciphersuites come first (since they are the
296 most recently disabled ciphersuites when "HIGH" is parsed).
297
298 Also, change ssl_create_cipher_list() (using this new
299 funcionality) such that between otherwise identical
300 cihpersuites, ephemeral ECDH is preferred over ephemeral DH in
301 the default order.
302 [Bodo Moeller]
303
0a05123a
BM
304 *) Change ssl_create_cipher_list() so that it automatically
305 arranges the ciphersuites in reasonable order before starting
306 to process the rule string. Thus, the definition for "DEFAULT"
307 (SSL_DEFAULT_CIPHER_LIST) now is just "ALL:!aNULL:!eNULL", but
308 remains equivalent to "AES:ALL:!aNULL:!eNULL:+aECDH:+kRSA:+RC4:@STRENGTH".
309 This makes it much easier to arrive at a reasonable default order
310 in applications for which anonymous ciphers are OK (meaning
311 that you can't actually use DEFAULT).
312 [Bodo Moeller; suggested by Victor Duchovni]
313
52b8dad8
BM
314 *) Split the SSL/TLS algorithm mask (as used for ciphersuite string
315 processing) into multiple integers instead of setting
316 "SSL_MKEY_MASK" bits, "SSL_AUTH_MASK" bits, "SSL_ENC_MASK",
317 "SSL_MAC_MASK", and "SSL_SSL_MASK" bits all in a single integer.
318 (These masks as well as the individual bit definitions are hidden
319 away into the non-exported interface ssl/ssl_locl.h, so this
320 change to the definition of the SSL_CIPHER structure shouldn't
321 affect applications.) This give us more bits for each of these
322 categories, so there is no longer a need to coagulate AES128 and
323 AES256 into a single algorithm bit, and to coagulate Camellia128
324 and Camellia256 into a single algorithm bit, which has led to all
325 kinds of kludges.
326
327 Thus, among other things, the kludge introduced in 0.9.7m and
328 0.9.8e for masking out AES256 independently of AES128 or masking
329 out Camellia256 independently of AES256 is not needed here in 0.9.9.
330
331 With the change, we also introduce new ciphersuite aliases that
332 so far were missing: "AES128", "AES256", "CAMELLIA128", and
333 "CAMELLIA256".
334 [Bodo Moeller]
335
357d5de5
NL
336 *) Add support for dsa-with-SHA224 and dsa-with-SHA256.
337 Use the leftmost N bytes of the signature input if the input is
338 larger than the prime q (with N being the size in bytes of q).
339 [Nils Larsch]
340
11d8cdc6
DSH
341 *) Very *very* experimental PKCS#7 streaming encoder support. Nothing uses
342 it yet and it is largely untested.
343 [Steve Henson]
344
06e2dd03
NL
345 *) Add support for the ecdsa-with-SHA224/256/384/512 signature types.
346 [Nils Larsch]
347
de121164 348 *) Initial incomplete changes to avoid need for function casts in OpenSSL
297e6f19 349 some compilers (gcc 4.2 and later) reject their use. Safestack is
a6fbcb42 350 reimplemented. Update ASN1 to avoid use of legacy functions.
de121164
DSH
351 [Steve Henson]
352
3189772e
AP
353 *) Win32/64 targets are linked with Winsock2.
354 [Andy Polyakov]
355
010fa0b3
DSH
356 *) Add an X509_CRL_METHOD structure to allow CRL processing to be redirected
357 to external functions. This can be used to increase CRL handling
358 efficiency especially when CRLs are very large by (for example) storing
359 the CRL revoked certificates in a database.
360 [Steve Henson]
361
5d20c4fb
DSH
362 *) Overhaul of by_dir code. Add support for dynamic loading of CRLs so
363 new CRLs added to a directory can be used. New command line option
364 -verify_return_error to s_client and s_server. This causes real errors
365 to be returned by the verify callback instead of carrying on no matter
366 what. This reflects the way a "real world" verify callback would behave.
367 [Steve Henson]
368
369 *) GOST engine, supporting several GOST algorithms and public key formats.
370 Kindly donated by Cryptocom.
371 [Cryptocom]
372
bc7535bc
DSH
373 *) Partial support for Issuing Distribution Point CRL extension. CRLs
374 partitioned by DP are handled but no indirect CRL or reason partitioning
375 (yet). Complete overhaul of CRL handling: now the most suitable CRL is
376 selected via a scoring technique which handles IDP and AKID in CRLs.
377 [Steve Henson]
378
379 *) New X509_STORE_CTX callbacks lookup_crls() and lookup_certs() which
380 will ultimately be used for all verify operations: this will remove the
381 X509_STORE dependency on certificate verification and allow alternative
382 lookup methods. X509_STORE based implementations of these two callbacks.
383 [Steve Henson]
384
f6e7d014
DSH
385 *) Allow multiple CRLs to exist in an X509_STORE with matching issuer names.
386 Modify get_crl() to find a valid (unexpired) CRL if possible.
387 [Steve Henson]
388
edc54021
DSH
389 *) New function X509_CRL_match() to check if two CRLs are identical. Normally
390 this would be called X509_CRL_cmp() but that name is already used by
391 a function that just compares CRL issuer names. Cache several CRL
392 extensions in X509_CRL structure and cache CRLDP in X509.
393 [Steve Henson]
394
450ea834
DSH
395 *) Store a "canonical" representation of X509_NAME structure (ASN1 Name)
396 this maps equivalent X509_NAME structures into a consistent structure.
397 Name comparison can then be performed rapidly using memcmp().
398 [Steve Henson]
399
454dbbc5
DSH
400 *) Non-blocking OCSP request processing. Add -timeout option to ocsp
401 utility.
c1c6c0bf
DSH
402 [Steve Henson]
403
b7683e3a
DSH
404 *) Allow digests to supply their own micalg string for S/MIME type using
405 the ctrl EVP_MD_CTRL_MICALG.
406 [Steve Henson]
407
408 *) During PKCS7 signing pass the PKCS7 SignerInfo structure to the
409 EVP_PKEY_METHOD before and after signing via the EVP_PKEY_CTRL_PKCS7_SIGN
410 ctrl. It can then customise the structure before and/or after signing
411 if necessary.
412 [Steve Henson]
413
0ee2166c
DSH
414 *) New function OBJ_add_sigid() to allow application defined signature OIDs
415 to be added to OpenSSLs internal tables. New function OBJ_sigid_free()
416 to free up any added signature OIDs.
417 [Steve Henson]
418
5ba4bf35
DSH
419 *) New functions EVP_CIPHER_do_all(), EVP_CIPHER_do_all_sorted(),
420 EVP_MD_do_all() and EVP_MD_do_all_sorted() to enumerate internal
421 digest and cipher tables. New options added to openssl utility:
422 list-message-digest-algorithms and list-cipher-algorithms.
423 [Steve Henson]
424
c4e7870a
BM
425 *) Change the array representation of binary polynomials: the list
426 of degrees of non-zero coefficients is now terminated with -1.
427 Previously it was terminated with 0, which was also part of the
428 value; thus, the array representation was not applicable to
429 polynomials where t^0 has coefficient zero. This change makes
430 the array representation useful in a more general context.
431 [Douglas Stebila]
432
89bbe14c
BM
433 *) Various modifications and fixes to SSL/TLS cipher string
434 handling. For ECC, the code now distinguishes between fixed ECDH
435 with RSA certificates on the one hand and with ECDSA certificates
436 on the other hand, since these are separate ciphersuites. The
437 unused code for Fortezza ciphersuites has been removed.
438
439 For consistency with EDH, ephemeral ECDH is now called "EECDH"
440 (not "ECDHE"). For consistency with the code for DH
441 certificates, use of ECDH certificates is now considered ECDH
442 authentication, not RSA or ECDSA authentication (the latter is
443 merely the CA's signing algorithm and not actively used in the
444 protocol).
445
446 The temporary ciphersuite alias "ECCdraft" is no longer
447 available, and ECC ciphersuites are no longer excluded from "ALL"
448 and "DEFAULT". The following aliases now exist for RFC 4492
449 ciphersuites, most of these by analogy with the DH case:
450
451 kECDHr - ECDH cert, signed with RSA
452 kECDHe - ECDH cert, signed with ECDSA
453 kECDH - ECDH cert (signed with either RSA or ECDSA)
454 kEECDH - ephemeral ECDH
455 ECDH - ECDH cert or ephemeral ECDH
456
457 aECDH - ECDH cert
458 aECDSA - ECDSA cert
459 ECDSA - ECDSA cert
460
461 AECDH - anonymous ECDH
462 EECDH - non-anonymous ephemeral ECDH (equivalent to "kEECDH:-AECDH")
463
464 [Bodo Moeller]
465
fb7b3932
DSH
466 *) Add additional S/MIME capabilities for AES and GOST ciphers if supported.
467 Use correct micalg parameters depending on digest(s) in signed message.
468 [Steve Henson]
469
01b8b3c7
DSH
470 *) Add engine support for EVP_PKEY_ASN1_METHOD. Add functions to process
471 an ENGINE asn1 method. Support ENGINE lookups in the ASN1 code.
472 [Steve Henson]
de9fcfe3 473
58aa573a 474 *) Initial engine support for EVP_PKEY_METHOD. New functions to permit
c9777d26
DSH
475 an engine to register a method. Add ENGINE lookups for methods and
476 functional reference processing.
58aa573a
DSH
477 [Steve Henson]
478
91c9e621
DSH
479 *) New functions EVP_Digest{Sign,Verify)*. These are enchance versions of
480 EVP_{Sign,Verify}* which allow an application to customise the signature
481 process.
482 [Steve Henson]
483
55311921
DSH
484 *) New -resign option to smime utility. This adds one or more signers
485 to an existing PKCS#7 signedData structure. Also -md option to use an
486 alternative message digest algorithm for signing.
487 [Steve Henson]
488
a6e7fcd1
DSH
489 *) Tidy up PKCS#7 routines and add new functions to make it easier to
490 create PKCS7 structures containing multiple signers. Update smime
491 application to support multiple signers.
492 [Steve Henson]
493
121dd39f
DSH
494 *) New -macalg option to pkcs12 utility to allow setting of an alternative
495 digest MAC.
496 [Steve Henson]
497
856640b5 498 *) Initial support for PKCS#5 v2.0 PRFs other than default SHA1 HMAC.
b8f702a0 499 Reorganize PBE internals to lookup from a static table using NIDs,
6d3a1eac
DSH
500 add support for HMAC PBE OID translation. Add a EVP_CIPHER ctrl:
501 EVP_CTRL_PBE_PRF_NID this allows a cipher to specify an alternative
502 PRF which will be automatically used with PBES2.
856640b5
DSH
503 [Steve Henson]
504
34b3c72e 505 *) Replace the algorithm specific calls to generate keys in "req" with the
959e8dfe
DSH
506 new API.
507 [Steve Henson]
508
399a6f0b
DSH
509 *) Update PKCS#7 enveloped data routines to use new API. This is now
510 supported by any public key method supporting the encrypt operation. A
511 ctrl is added to allow the public key algorithm to examine or modify
512 the PKCS#7 RecipientInfo structure if it needs to: for RSA this is
513 a no op.
514 [Steve Henson]
28e4fe34 515
03919683
DSH
516 *) Add a ctrl to asn1 method to allow a public key algorithm to express
517 a default digest type to use. In most cases this will be SHA1 but some
518 algorithms (such as GOST) need to specify an alternative digest. The
519 return value indicates how strong the prefernce is 1 means optional and
520 2 is mandatory (that is it is the only supported type). Modify
521 ASN1_item_sign() to accept a NULL digest argument to indicate it should
522 use the default md. Update openssl utilities to use the default digest
523 type for signing if it is not explicitly indicated.
524 [Steve Henson]
525
ee1d9ec0
DSH
526 *) Use OID cross reference table in ASN1_sign() and ASN1_verify(). New
527 EVP_MD flag EVP_MD_FLAG_PKEY_METHOD_SIGNATURE. This uses the relevant
528 signing method from the key type. This effectively removes the link
529 between digests and public key types.
530 [Steve Henson]
531
d2027098
DSH
532 *) Add an OID cross reference table and utility functions. Its purpose is to
533 translate between signature OIDs such as SHA1WithrsaEncryption and SHA1,
534 rsaEncryption. This will allow some of the algorithm specific hackery
535 needed to use the correct OID to be removed.
536 [Steve Henson]
537
492a9e24
DSH
538 *) Remove algorithm specific dependencies when setting PKCS7_SIGNER_INFO
539 structures for PKCS7_sign(). They are now set up by the relevant public
540 key ASN1 method.
541 [Steve Henson]
542
9ca7047d
DSH
543 *) Add provisional EC pkey method with support for ECDSA and ECDH.
544 [Steve Henson]
545
ffb1ac67
DSH
546 *) Add support for key derivation (agreement) in the API, DH method and
547 pkeyutl.
548 [Steve Henson]
549
3ba0885a
DSH
550 *) Add DSA pkey method and DH pkey methods, extend DH ASN1 method to support
551 public and private key formats. As a side effect these add additional
552 command line functionality not previously available: DSA signatures can be
553 generated and verified using pkeyutl and DH key support and generation in
554 pkey, genpkey.
555 [Steve Henson]
556
4700aea9
UM
557 *) BeOS support.
558 [Oliver Tappe <zooey@hirschkaefer.de>]
559
560 *) New make target "install_html_docs" installs HTML renditions of the
561 manual pages.
562 [Oliver Tappe <zooey@hirschkaefer.de>]
563
f5cda4cb
DSH
564 *) New utility "genpkey" this is analagous to "genrsa" etc except it can
565 generate keys for any algorithm. Extend and update EVP_PKEY_METHOD to
566 support key and parameter generation and add initial key generation
567 functionality for RSA.
568 [Steve Henson]
569
f733a5ef
DSH
570 *) Add functions for main EVP_PKEY_method operations. The undocumented
571 functions EVP_PKEY_{encrypt,decrypt} have been renamed to
572 EVP_PKEY_{encrypt,decrypt}_old.
573 [Steve Henson]
574
0b6f3c66
DSH
575 *) Initial definitions for EVP_PKEY_METHOD. This will be a high level public
576 key API, doesn't do much yet.
577 [Steve Henson]
578
0b33dac3
DSH
579 *) New function EVP_PKEY_asn1_get0_info() to retrieve information about
580 public key algorithms. New option to openssl utility:
581 "list-public-key-algorithms" to print out info.
582 [Steve Henson]
583
33273721
BM
584 *) Implement the Supported Elliptic Curves Extension for
585 ECC ciphersuites from draft-ietf-tls-ecc-12.txt.
586 [Douglas Stebila]
587
246e0931
DSH
588 *) Don't free up OIDs in OBJ_cleanup() if they are in use by EVP_MD or
589 EVP_CIPHER structures to avoid later problems in EVP_cleanup().
590 [Steve Henson]
591
3e4585c8 592 *) New utilities pkey and pkeyparam. These are similar to algorithm specific
f5cda4cb 593 utilities such as rsa, dsa, dsaparam etc except they process any key
3e4585c8 594 type.
3e84b6e1
DSH
595 [Steve Henson]
596
35208f36
DSH
597 *) Transfer public key printing routines to EVP_PKEY_ASN1_METHOD. New
598 functions EVP_PKEY_print_public(), EVP_PKEY_print_private(),
599 EVP_PKEY_print_param() to print public key data from an EVP_PKEY
600 structure.
601 [Steve Henson]
602
448be743
DSH
603 *) Initial support for pluggable public key ASN1.
604 De-spaghettify the public key ASN1 handling. Move public and private
605 key ASN1 handling to a new EVP_PKEY_ASN1_METHOD structure. Relocate
606 algorithm specific handling to a single module within the relevant
607 algorithm directory. Add functions to allow (near) opaque processing
608 of public and private key structures.
609 [Steve Henson]
610
36ca4ba6
BM
611 *) Implement the Supported Point Formats Extension for
612 ECC ciphersuites from draft-ietf-tls-ecc-12.txt.
613 [Douglas Stebila]
614
ddac1974
NL
615 *) Add initial support for RFC 4279 PSK TLS ciphersuites. Add members
616 for the psk identity [hint] and the psk callback functions to the
617 SSL_SESSION, SSL and SSL_CTX structure.
618
619 New ciphersuites:
620 PSK-RC4-SHA, PSK-3DES-EDE-CBC-SHA, PSK-AES128-CBC-SHA,
621 PSK-AES256-CBC-SHA
622
623 New functions:
624 SSL_CTX_use_psk_identity_hint
625 SSL_get_psk_identity_hint
626 SSL_get_psk_identity
627 SSL_use_psk_identity_hint
628
629 [Mika Kousa and Pasi Eronen of Nokia Corporation]
630
c7235be6
UM
631 *) Add RFC 3161 compliant time stamp request creation, response generation
632 and response verification functionality.
633