me
/
guix
Archived
1
0
Fork 0

gnu: Add perl-crypt-rijndael.

* gnu/packages/perl.scm (perl-crypt-rijndael): New variable.
master
Paul Garlick 2020-04-03 12:19:37 +01:00
parent b4a003f635
commit 20b4eb556e
No known key found for this signature in database
GPG Key ID: AAC7E891896B568A
1 changed files with 30 additions and 0 deletions

View File

@ -1884,6 +1884,36 @@ contained in Appendix A of FIPS Publication 181, \"Standard for Automated
Password Generator\".")
(license (package-license perl))))
(define-public perl-crypt-rijndael
(package
(name "perl-crypt-rijndael")
(version "1.14")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/L/LE/LEONT/Crypt-Rijndael-"
version ".tar.gz"))
(sha256
(base32
"03l5nwq97a8q9na4dpd4m3r7vrwpranx225vw8xm40w7zvgw6lb4"))))
(build-system perl-build-system)
(home-page "https://metacpan.org/release/Crypt-Rijndael")
(synopsis "Crypt::CBC compliant Rijndael encryption module")
(description "This module implements the Rijndael cipher which has
been selected as the Advanced Encryption Standard. The keysize for
Rijndael is 32 bytes. The blocksize is 16 bytes (128 bits). The
supported encryption modes are:
@itemize
@item @code{MODE_CBC}---Cipher Block Chaining
@item @code{MODE_CFB}---Cipher feedback
@item @code{MODE_CTR}---Counter mode
@item @code{MODE_ECB}---Electronic cookbook mode
@item @code{MODE_OFB}---Output feedback
@end itemize")
(license gpl3)))
(define-public perl-crypt-rc4
(package
(name "perl-crypt-rc4")