diff options
author | erwin <erwin@FreeBSD.org> | 2005-12-19 05:59:47 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2005-12-19 05:59:47 +0800 |
commit | 5157299ddd2674f54d31c7b55dd51c7eb6f39de0 (patch) | |
tree | 40627db08bd9f729bdf0015ddd373b3884f5f8e3 /security/Makefile | |
parent | 3a1c0d6d315d3f109f065acdb5f8abbf8610506c (diff) | |
download | freebsd-ports-gnome-5157299ddd2674f54d31c7b55dd51c7eb6f39de0.tar.gz freebsd-ports-gnome-5157299ddd2674f54d31c7b55dd51c7eb6f39de0.tar.zst freebsd-ports-gnome-5157299ddd2674f54d31c7b55dd51c7eb6f39de0.zip |
Generic Counter Mode implementation in pure Perl. The Counter Mode module
constructs a stream cipher from a block cipher or cryptographic hash funtion
and returns it as an object. Any block cipher in the Crypt:: class can be
used, as long as it supports the blocksize and keysize methods. Any hash
function in the Digest:: class can be used, as long as it supports
the add method.
WWW: http://search.cpan.org/dist/Crypt-Ctr
PR: ports/90613
Submitted by: Gabor Kovesdan
Diffstat (limited to 'security/Makefile')
-rw-r--r-- | security/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index ecb4add9a8a6..1b6daf7ab725 100644 --- a/security/Makefile +++ b/security/Makefile @@ -293,6 +293,7 @@ SUBDIR += p5-Crypt-CipherSaber SUBDIR += p5-Crypt-Cracklib SUBDIR += p5-Crypt-Cryptix + SUBDIR += p5-Crypt-Ctr SUBDIR += p5-Crypt-DES SUBDIR += p5-Crypt-DES_EDE3 SUBDIR += p5-Crypt-DH |