51adc5a6ca
Crypt::RC5 is a Perl implementation of the RC5 encryption algorithm. RC5 is a fast block cipher designed by Ronald Rivest for RSA Data Security (now RSA Security) in 1994. It is a parameterized algorithm with a variable block size, a variable key size, and a variable number of rounds. This particular implementation is 32 bit. As such, it is suggested that a minimum of 12 rounds be performed. from Olivier Cherrier. ok gsoares@
16 lines
325 B
Makefile
16 lines
325 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/04/19 14:52:43 okan Exp $
|
|
|
|
COMMENT = implementation of the RC5 encryption algorithm
|
|
|
|
MODULES = cpan
|
|
DISTNAME = Crypt-RC5-2.00
|
|
CATEGORIES = security
|
|
|
|
# Perl
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
.include <bsd.port.mk>
|