guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/07: gnu: Add perl-digest-md4.


From: guix-commits
Subject: 06/07: gnu: Add perl-digest-md4.
Date: Tue, 14 Apr 2020 09:42:51 -0400 (EDT)

pgarlick pushed a commit to branch master
in repository guix.

commit 602fc1e5fa90241d515c7f509d0540ffbe14330f
Author: Paul Garlick <address@hidden>
AuthorDate: Tue Apr 14 12:53:02 2020 +0100

    gnu: Add perl-digest-md4.
    
    * gnu/packages/perl.scm (perl-digest-md4): New variable.
---
 gnu/packages/perl.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index dccc07d..b485741 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -3546,6 +3546,29 @@ for CRC-CCITT, CRC-16 and CRC-32.")
 interface for the RFC 2104 HMAC mechanism.")
     (license (package-license perl))))
 
+(define-public perl-digest-md4
+  (package
+    (name "perl-digest-md4")
+    (version "1.9")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append
+            "mirror://cpan/authors/id/M/MI/MIKEM/DigestMD4/Digest-MD4-"
+            version ".tar.gz"))
+      (sha256
+       (base32
+        "19ma1hmvgiznq95ngzvm6v4dfxc9zmi69k8iyfcg6w14lfxi0lb6"))))
+    (build-system perl-build-system)
+    (home-page "https://metacpan.org/release/Digest-MD4";)
+    (synopsis "Interface to the MD4 Algorithm")
+    (description "The @code{Digest::MD4} module allows you to use the
+RSA Data Security Inc.@: MD4 Message Digest algorithm from within Perl
+programs.  The algorithm takes as input a message of arbitrary length
+and produces as output a 128-bit \"fingerprint\" or \"message digest\"
+of the input.  MD4 is described in RFC 1320.")
+    (license perl-license)))
+
 (define-public perl-digest-md5
   (package
     (name "perl-digest-md5")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]