SP800-90B_EntropyAssessment: init at 1.1.6
The SP800-90B_EntropyAssessment C++package implements the min-entropy assessment methods included in Special Publication 800-90B. Signed-off-by: Oliver Richter <richter-oliver@gmx.net>
This commit is contained in:
parent
650596759b
commit
188e5aea14
2 changed files with 52 additions and 0 deletions
50
pkgs/tools/misc/SP800-90B_EntropyAssessment/default.nix
Normal file
50
pkgs/tools/misc/SP800-90B_EntropyAssessment/default.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, bzip2
|
||||
, libdivsufsort
|
||||
, jsoncpp
|
||||
, openssl
|
||||
, mpfr
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "SP800-90B_EntropyAssessment";
|
||||
version = "1.1.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "usnistgov";
|
||||
repo = "SP800-90B_EntropyAssessment";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-KZQ7kC0PbBkjLEQZIqYakQ91OvCxruhdfUwiRHtno3w=";
|
||||
};
|
||||
|
||||
buildInputs = [ bzip2 libdivsufsort jsoncpp openssl mpfr ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace Makefile \
|
||||
--replace "-march=native" ""
|
||||
'';
|
||||
|
||||
sourceRoot = "source/cpp";
|
||||
|
||||
makeFlags = [
|
||||
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
||||
"ARCH=${stdenv.hostPlatform.linuxArch}"
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/bin
|
||||
cp ea_* $out/bin
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/usnistgov/SP800-90B_EntropyAssessment";
|
||||
description = "Implementation of min-entropy assessment methods included in Special Publication 800-90B.";
|
||||
platforms = lib.platforms.linux;
|
||||
license = lib.licenses.free; #this software uses the NIST software license
|
||||
maintainers = with lib.maintainers; [ orichter thillux ];
|
||||
};
|
||||
}
|
|
@ -40560,6 +40560,8 @@ with pkgs;
|
|||
|
||||
sndio = callPackage ../misc/sndio { };
|
||||
|
||||
SP800-90B_EntropyAssessment = callPackage ../tools/misc/SP800-90B_EntropyAssessment { };
|
||||
|
||||
sticky = callPackage ../applications/misc/sticky { };
|
||||
|
||||
stork = darwin.apple_sdk_11_0.callPackage ../applications/misc/stork {
|
||||
|
|
Loading…
Reference in a new issue