about summary refs log tree commit diff
path: root/pkgs/tools/security/hash_extender/default.nix
blob: 6efa780e1cd3b99146b1a51c1842425e14b8a6ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchFromGitHub, openssl }:

stdenv.mkDerivation {
  pname = "hash_extender";
  version = "2017-04-10";

  src = fetchFromGitHub {
    owner = "iagox86";
    repo = "hash_extender";
    rev = "d27581e062dd0b534074e11d7d311f65a6d7af21";
    sha256 = "1npwbgqaynjh5x39halw43i116v89sxkpa1g1bbvc1lpi8hkhhcb";
  };

  buildInputs = [ openssl ];

  installPhase = ''
    mkdir -p $out/bin
    cp hash_extender $out/bin
  '';

  meta = with stdenv.lib; {
    description = "Tool to automate hash length extension attacks";
    homepage = "https://github.com/iagox86/hash_extender";
    license = licenses.bsd3;
    maintainers = with maintainers; [ geistesk ];
  };
}