forked from mirrors/nixpkgs
nixpkgs: remove cb1cat
Brice Minaud reported a simple attack on the CBEAM Pi permutation function, resulting in it being withdrawn from CAESAR. :( Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
0f1f2115e9
commit
111e1536e5
|
@ -1,24 +0,0 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cb1cat-${version}";
|
||||
version = "20140403153000";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.cblnk.com/cb1cat/dist/${name}.tgz";
|
||||
sha256 = "1zi0rxbgmp6vkcarg493gfgn7pnfdpz0iplcgslbc45n2bxkv70q";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mv cb1cat $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "cryptographic tool based on the CBEAMr1 sponge function";
|
||||
homepage = "https://www.cblnk.com/cb1cat/";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||
};
|
||||
}
|
|
@ -426,8 +426,6 @@ let
|
|||
|
||||
aescrypt = callPackage ../tools/misc/aescrypt { };
|
||||
|
||||
cb1cat = callPackage ../tools/security/cb1cat { };
|
||||
|
||||
ahcpd = callPackage ../tools/networking/ahcpd { };
|
||||
|
||||
aircrackng = callPackage ../tools/networking/aircrack-ng { };
|
||||
|
|
Loading…
Reference in a new issue