guix-commits
[Top][All Lists]
Advanced

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

04/07: gnu: Add perl-crypt-cbc.


From: guix-commits
Subject: 04/07: gnu: Add perl-crypt-cbc.
Date: Tue, 14 Apr 2020 09:42:50 -0400 (EDT)

pgarlick pushed a commit to branch master
in repository guix.

commit 2aa17cef570061c1b0d0b44f3de092e8f2ecdf1e
Author: Paul Garlick <address@hidden>
AuthorDate: Fri Apr 10 00:39:29 2020 +0100

    gnu: Add perl-crypt-cbc.
    
    * gnu/packages/perl.scm (perl-crypt-cbc): New variable.
---
 gnu/packages/perl.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index a7117af..e501391 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -1859,6 +1859,31 @@ CPAN::Meta object are present.")
 versa.")
     (license (package-license perl))))
 
+(define-public perl-crypt-cbc
+  (package
+    (name "perl-crypt-cbc")
+    (version "2.33")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append
+            "mirror://cpan/authors/id/L/LD/LDS/Crypt-CBC-"
+            version ".tar.gz"))
+      (sha256
+       (base32
+        "0ig698lmpjz7fslnznxm0609lvlnvf4f3s370082nzycnqhxww3a"))))
+    (build-system perl-build-system)
+    (native-inputs
+     `(("perl-crypt-rijndael" ,perl-crypt-rijndael)))
+    (home-page "https://metacpan.org/release/Crypt-CBC";)
+    (synopsis "Encrypt Data with Cipher Block Chaining Mode")
+    (description "@code{Crypt::CBC} is a Perl-only implementation of
+the cryptographic Cipher Block Chaining (CBC) mode.  In combination
+with a block cipher such as @code{Crypt::Rijndael} you can encrypt and
+decrypt messages of arbitrarily long length.  The encrypted messages
+are compatible with the encryption format used by SSLeay.")
+    (license perl-license)))
+
 (define-public perl-crypt-eksblowfish
   (package
     (name "perl-crypt-eksblowfish")



reply via email to

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