botan: 3.3.0 -> 3.4.0

Release notes:
https://botan.randombit.net/news.html#version-3-4-0-2024-04-08

Notables changes/fixes:

- Use a new method for constant time division in Kyber to avoid
  a possible side channel where the compiler inserts use of
  a variable time division. (GH #3959)
- Add Ed448 signatures and X448 key exchange (GH #3933)
- Fix a bug affecting use of SIV and CCM ciphers
  in the FFI interface. (GH #3971)

Signed-off-by: Markus Theil <theil.markus@gmail.com>
This commit is contained in:
Markus Theil 2024-04-15 10:53:42 +02:00
parent f458190f4b
commit c803cb688f
No known key found for this signature in database
GPG Key ID: FEE64346C8BF92AE
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ callPackage, ... } @ args:
callPackage ./generic.nix (args // {
baseVersion = "3.3";
baseVersion = "3.4";
revision = "0";
hash = "sha256-No8R9CbxIFrtuenjI2ihZTXcEb1gNRBm5vZmTsNrhbk=";
hash = "sha256-cYQ6/MCixYX48z+jBPC1iuS5xdgwb4lGZ7N0YEQndVc=";
})