nixpkgs/pkgs/development/libraries/botan/3.0.nix
Markus Theil 75b52b992b
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 <theil.markus@gmail.com>
2024-04-08 11:33:10 +02:00

8 lines
175 B
Nix

{ callPackage, ... } @ args:
callPackage ./generic.nix (args // {
baseVersion = "3.3";
revision = "0";
hash = "sha256-No8R9CbxIFrtuenjI2ihZTXcEb1gNRBm5vZmTsNrhbk=";
})