2018-01-04 05:47:29 +00:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
2013-02-17 13:44:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-09 18:16:03 +00:00
|
|
|
name = "apg-2.3.0b";
|
2013-02-17 13:44:54 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.adel.nursat.kz/apg/download/${name}.tar.gz";
|
2014-10-09 18:16:03 +00:00
|
|
|
sha256 = "14lbq81xrcsmpk1b9qmqyz7n6ypf08zcxvcvp6f7ybcyf0lj1rfi";
|
2013-02-17 13:44:54 +00:00
|
|
|
};
|
|
|
|
configurePhase = ''
|
|
|
|
substituteInPlace Makefile --replace /usr/local "$out"
|
|
|
|
'';
|
2018-01-04 05:47:29 +00:00
|
|
|
makeFlags = stdenv.lib.optionals stdenv.isDarwin ["CC=cc"];
|
2013-07-24 10:27:06 +00:00
|
|
|
|
2018-04-05 13:33:50 +00:00
|
|
|
patches = [
|
|
|
|
./apg.patch
|
|
|
|
./phony-install-target.patch
|
|
|
|
];
|
2018-01-04 05:47:29 +00:00
|
|
|
|
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
sed -i -e 's|APG_CLIBS += -lcrypt|APG_CLIBS += -L${openssl.out}/lib -lcrypto|' Makefile
|
|
|
|
'';
|
2013-02-17 13:44:54 +00:00
|
|
|
|
|
|
|
meta = {
|
2013-10-05 14:22:46 +00:00
|
|
|
description = "Tools for random password generation";
|
2013-02-17 13:44:54 +00:00
|
|
|
longDescription = ''
|
|
|
|
APG (Automated Password Generator) is the tool set for random
|
|
|
|
password generation.
|
|
|
|
|
|
|
|
Standalone version
|
|
|
|
|
|
|
|
Generates some random words of required type and prints them
|
|
|
|
to standard output.
|
|
|
|
|
|
|
|
Network version
|
|
|
|
|
|
|
|
APG server: When client's request is arrived generates some
|
|
|
|
random words of predefined type and send them to client over
|
|
|
|
the network (according to RFC0972).
|
|
|
|
|
|
|
|
APG client: Sends the password generation request to the APG
|
|
|
|
server, wait for generated Passwords arrival and then prints
|
|
|
|
them to the standard output.
|
|
|
|
|
|
|
|
Advantages
|
|
|
|
|
|
|
|
* Built-in ANSI X9.17 RNG (Random Number Generator) (CAST/SHA1)
|
|
|
|
* Built-in password quality checking system (it has support for
|
|
|
|
Bloom filter for faster access)
|
|
|
|
* Two Password Generation Algorithms:
|
|
|
|
1. Pronounceable Password Generation Algorithm (according to
|
|
|
|
NIST FIPS 181)
|
|
|
|
2. Random Character Password Generation Algorithm with 35
|
|
|
|
configurable modes of operation
|
|
|
|
* Configurable password length parameters
|
|
|
|
* Configurable amount of generated passwords
|
|
|
|
* Ability to initialize RNG with user string
|
|
|
|
* Support for /dev/random
|
|
|
|
* Ability to crypt() generated passwords and print them as
|
|
|
|
additional output
|
|
|
|
* Special parameters to use APG in script
|
|
|
|
* Ability to log password generation requests for network version
|
|
|
|
* Ability to control APG service access using tcpd
|
|
|
|
* Ability to use password generation service from any type of box
|
|
|
|
(Mac, WinXX, etc.) that connected to network
|
|
|
|
* Ability to enforce remote users to use only allowed type of
|
|
|
|
password generation
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.adel.nursat.kz/apg/";
|
2013-02-17 13:44:54 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
2018-04-05 13:10:50 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-02-17 13:44:54 +00:00
|
|
|
};
|
|
|
|
}
|