X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=CHANGES;h=6c398c064c0f0bd2be9fcc5c8511b571d2b6a2a9;hp=bbeaa2a75d385894d446d3752ff644ad9ae3a8e7;hb=1fac96e4d6484a517f2ebe99b72016726391723c;hpb=f43c814917fea994234376b7c7538ad26b9c46bf;ds=sidebyside diff --git a/CHANGES b/CHANGES index bbeaa2a75d..6c398c064c 100644 --- a/CHANGES +++ b/CHANGES @@ -10,6 +10,26 @@ [23-Dec-1998] down below; but in later versions, these hyphens are gone.] + *) Bignum library bug fix. IRIX 6 passes "make test" now! + This also avoids the problems with SC4.2 and unpatched SC5. + [Andy Polyakov ] + + *) New functions sk_num, sk_value and sk_set to replace the previous macros. + These are required because of the typesafe stack would otherwise break + existing code. If old code used a structure member which used to be STACK + and is now STACK_OF (for example cert in a PKCS7_SIGNED structure) with + sk_num or sk_value it would produce an error because the num, data members + are not present in STACK_OF. Now it just produces a warning. sk_set + replaces the old method of assigning a value to sk_value + (e.g. sk_value(x, i) = y) which the library used in a few cases. Any code + that does this will no longer work (and should use sk_set instead) but + this could be regarded as a "questionable" behaviour anyway. + [Steve Henson] + + *) Fix most of the other PKCS#7 bugs. The "experimental" code can now + correctly handle encrypted S/MIME data. + [Steve Henson] + *) Change type of various DES function arguments from des_cblock (which means, in function argument declarations, pointer to char) to des_cblock * (meaning pointer to array with 8 char elements),