From c803cb688fcdc76ce198e181e7fe81ffd92af6a2 Mon Sep 17 00:00:00 2001 From: Markus Theil Date: Mon, 15 Apr 2024 10:53:42 +0200 Subject: [PATCH] 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 --- pkgs/development/libraries/botan/3.0.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/botan/3.0.nix b/pkgs/development/libraries/botan/3.0.nix index 68cde850f1e8..d55d7edfb74c 100644 --- a/pkgs/development/libraries/botan/3.0.nix +++ b/pkgs/development/libraries/botan/3.0.nix @@ -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="; })