diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-02-16 21:32:24 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2021-02-16 21:32:24 +0700 |
commit | cc7fbb6bbe56f107cd4c54bcc1691911a851cd1a (patch) | |
tree | e8ff9c6acbd2c5daae4b9d96fbb0acba347f6f0f | |
parent | Use cached encodings for Equals/GetHashCode (diff) | |
download | BouncyCastle.NET-ed25519-cc7fbb6bbe56f107cd4c54bcc1691911a851cd1a.tar.xz |
Update versions and release notes for 1.8.10 release-1.8.10
-rw-r--r-- | crypto/NBuild.build | 2 | ||||
-rw-r--r-- | crypto/Readme.html | 9 | ||||
-rw-r--r-- | crypto/src/AssemblyInfo.cs | 6 |
3 files changed, 11 insertions, 6 deletions
diff --git a/crypto/NBuild.build b/crypto/NBuild.build index e14102139..d6cd1a170 100644 --- a/crypto/NBuild.build +++ b/crypto/NBuild.build @@ -16,7 +16,7 @@ <property name="dist-path" value="./dist"/> <!-- Version --> - <property name="version" value="1.8.9"/> + <property name="version" value="1.8.10"/> <property name="name" value="BouncyCastle.Crypto"/> <property name="OPTIONAL_STRONG_NAME" value="" /> diff --git a/crypto/Readme.html b/crypto/Readme.html index e668a84c9..cd117ca64 100644 --- a/crypto/Readme.html +++ b/crypto/Readme.html @@ -308,8 +308,13 @@ We state, where EC MQV has not otherwise been disabled or removed: <hr style="WIDTH: 100%; HEIGHT: 2px"> <h3><a class="mozTocH3" name="mozTocId3413"></a>Notes:</h3> - <h4><a class="mozTocH4" name="mozTocId85324"></a>Release 1.8.10, TBD</h4> + <h4><a class="mozTocH4" name="mozTocId85324"></a>Release 1.8.10, Tuesday February 16, 2021</h4> + <h5>Defects Fixed</h5> + <ul> + <li>Fixed CMS signature verification for RSASSA-PSS when signed attributes are not present.</li> + <li>The output size for SHAKE128 (SHAKE256) when used as a fixed-length digest is now 256 (512) bits (also applies to cSHAKE).</li> + </ul> <h5>Additional Notes</h5> <ul> <li> @@ -326,7 +331,7 @@ We state, where EC MQV has not otherwise been disabled or removed: </ul> <h5>Additional Features and Functionality</h5> <ul> - <li>Added CSHAKE digest and KMAC.</li> + <li>Added cSHAKE digest and KMAC.</li> <li>Added support for PKCS#5 Scheme 2 to Pkcs12Store.</li> <li>Improved performance for GCM.</li> </ul> diff --git a/crypto/src/AssemblyInfo.cs b/crypto/src/AssemblyInfo.cs index 812334f97..f7c2f0e3d 100644 --- a/crypto/src/AssemblyInfo.cs +++ b/crypto/src/AssemblyInfo.cs @@ -33,9 +33,9 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.8.9.0")] -[assembly: AssemblyFileVersion("1.8.20343.1")] -[assembly: AssemblyInformationalVersion("1.8.9")] +[assembly: AssemblyVersion("1.8.10.0")] +[assembly: AssemblyFileVersion("1.8.21047.1")] +[assembly: AssemblyInformationalVersion("1.8.10")] // // In order to sign your assembly you must specify a key to use. Refer to the |