X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=CHANGES;h=e182b6072fe22fb4b68165eb3c8a2a66806939e9;hp=541efc390ce31bba5adade0a69c6327d8c35be2e;hb=333ed02c8a912f7c8b7dcf7ea8f1ff10e7a006c0;hpb=739a1eb1961cdc3b1597a040766f3cb359d095f6 diff --git a/CHANGES b/CHANGES index 541efc390c..e182b6072f 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,28 @@ Changes between 1.0.2h and 1.1.0 [xx XXX 2016] + *) The method for finding the storage location for the Windows RAND seed file + has changed. First we check %RANDFILE%. If that is not set then we check + the directories %HOME%, %USERPROFILE% and %SYSTEMROOT% in that order. If + all else fails we fall back to C:\. + [Matt Caswell] + + *) The EVP_EncryptUpdate() function has had its return type changed from void + to int. A return of 0 indicates and error while a return of 1 indicates + success. + [Matt Caswell] + + *) The flags RSA_FLAG_NO_CONSTTIME, DSA_FLAG_NO_EXP_CONSTTIME and + DH_FLAG_NO_EXP_CONSTTIME which previously provided the ability to switch + off the constant time implementation for RSA, DSA and DH have been made + no-ops and deprecated. + [Matt Caswell] + + *) Windows RAND implementation was simplified to only get entropy by + calling CryptGenRandom(). Various other RAND-related tickets + were also closed. + [Joseph Wylie Yandle, Rich Salz] + *) The stack and lhash API's were renamed to start with OPENSSL_SK_ and OPENSSL_LH_, respectively. The old names are available with API compatibility. They new names are now completely documented.