[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/07: gnu: Add perl-authen-passphrase.
From: |
guix-commits |
Subject: |
07/07: gnu: Add perl-authen-passphrase. |
Date: |
Tue, 14 Apr 2020 09:42:52 -0400 (EDT) |
pgarlick pushed a commit to branch master
in repository guix.
commit c0b158dff7d1c5f1395f7fda35e0219f449b495d
Author: Paul Garlick <address@hidden>
AuthorDate: Tue Apr 14 14:31:23 2020 +0100
gnu: Add perl-authen-passphrase.
* gnu/packages/perl.scm (perl-authen-passphrase): New variable.
---
gnu/packages/perl.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index b485741..7c9a1d3 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -396,6 +396,49 @@ functions. The password hashing function is implemented
in XS with a
pure Perl backup version for systems that cannot handle XS.")
(license gpl2+)))
+(define-public perl-authen-passphrase
+ (package
+ (name "perl-authen-passphrase")
+ (version "0.008")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Authen-Passphrase-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0qq4krap687rxf6xr31bg5nj5dqmm1frcm7fq249v1bxc4h4bnsm"))))
+ (build-system perl-build-system)
+ (native-inputs
+ `(("perl-module-build" ,perl-module-build)
+ ("perl-test-pod" ,perl-test-pod)
+ ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
+ (propagated-inputs
+ `(("perl-authen-dechpwd" ,perl-authen-dechpwd)
+ ("perl-crypt-des" ,perl-crypt-des)
+ ("perl-crypt-eksblowfish" ,perl-crypt-eksblowfish)
+ ("perl-crypt-mysql" ,perl-crypt-mysql)
+ ("perl-crypt-passwdmd5" ,perl-crypt-passwdmd5)
+ ("perl-crypt-unixcrypt_xs" ,perl-crypt-unixcrypt_xs)
+ ("perl-data-entropy" ,perl-data-entropy)
+ ("perl-digest-md4" ,perl-digest-md4)
+ ("perl-module-runtime" ,perl-module-runtime)
+ ("perl-params-classify" ,perl-params-classify)))
+ (home-page "https://metacpan.org/release/Authen-Passphrase")
+ (synopsis "Hashed passwords/passphrases as objects")
+ (description "@code{Authen-Passphrase} is the base class for a
+system of objects that encapsulate passphrases. An object of this
+type is a passphrase recogniser; its job is to recognise whether an
+offered passphrase is the right one. For security such passphrase
+recognisers usually do not themselves know the passphrase they are
+looking for; they can merely recognise it when they see it. There are
+many schemes in use to achieve this effect and the intent of this
+class is to provide a consistent interface to them all. In addition
+to the base class, this module also contains implementations of
+several specific passphrase schemes.")
+ (license perl-license)))
+
(define-public perl-autovivification
(package
(name "perl-autovivification")
- branch master updated (7cb4c52 -> c0b158d), guix-commits, 2020/04/14
- 01/07: gnu: Add perl-crypt-unixcrypt_xs., guix-commits, 2020/04/14
- 02/07: gnu: Add perl-crypt-passwdmd5., guix-commits, 2020/04/14
- 04/07: gnu: Add perl-crypt-cbc., guix-commits, 2020/04/14
- 03/07: gnu: Add perl-crypt-mysql., guix-commits, 2020/04/14
- 05/07: gnu: Add perl-crypt-des., guix-commits, 2020/04/14
- 06/07: gnu: Add perl-digest-md4., guix-commits, 2020/04/14
- 07/07: gnu: Add perl-authen-passphrase.,
guix-commits <=