From 75b52b992bc342b458ac5c0f09f8c0ab4f237a2d Mon Sep 17 00:00:00 2001 From: Markus Theil Date: Sun, 24 Mar 2024 16:37:36 +0100 Subject: [PATCH] botan3: 3.2.0 -> 3.3.0 Full release notes: https://botan.randombit.net/news.html#version-3-3-0-2024-02-20 Some highlights: * Fix DoS with arbitrary length primes in ASN.1 encoding of ECC * Add FrodoKEM for PQC * Add Blake2s * Fix potential side channels in Kyber * TLS with raw public keys 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 4c0eae63493a..68cde850f1e8 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.2"; + baseVersion = "3.3"; revision = "0"; - hash = "sha256-BJyEeDX89u86niBrM94F3TiZnDJeJHSCdypVmNnl7OM="; + hash = "sha256-No8R9CbxIFrtuenjI2ihZTXcEb1gNRBm5vZmTsNrhbk="; })