- ruby-crypt is a pure-ruby implementation of a number of popular

encryption algorithms.
This commit is contained in:
Cheng-Lung Sung 2006-08-10 15:47:15 +00:00
parent 1401bbab2f
commit a9fbcd3d1d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=170283
5 changed files with 51 additions and 0 deletions

View file

@ -580,6 +580,7 @@
SUBDIR += ruby-aes
SUBDIR += ruby-blowfish
SUBDIR += ruby-cast_256
SUBDIR += ruby-crypt
SUBDIR += ruby-gpgme
SUBDIR += ruby-hmac
SUBDIR += ruby-mcrypt

View file

@ -0,0 +1,27 @@
# New ports collection makefile for: ruby-crypt
# Date created: 2006-08-10
# Whom: Cheng-Lung Sung <clsung@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= crypt
PORTVERSION= 1.1.4
CATEGORIES= security ruby
MASTER_SITES= ${MASTER_SITE_RUBYFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DIST_SUBDIR= ruby
MAINTAINER= clsung@FreeBSD.org
COMMENT= Pure-ruby implementation of popular encryption algorithms
USE_RUBY= yes
NO_BUILD= yes
WRKSRC= ${WRKDIR}
do-install:
@cd ${WRKSRC}; ${RUBY} install.rb
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
MD5 (ruby/crypt-1.1.4.tar.gz) = 68e6bc4bdc952f5a7919f6bc4fdb1348
SHA256 (ruby/crypt-1.1.4.tar.gz) = 92d6d5f391aba825f55c9c886ce6aeb4f5241822e3b45f8e80a3cd56242fc4fc
SIZE (ruby/crypt-1.1.4.tar.gz) = 19824

View file

@ -0,0 +1,10 @@
The Crypt library is a pure-ruby implementation of a number of
popular encryption algorithms. Block cyphers currently available
include Blowfish, GOST, IDEA, and Rijndael (AES).
Cypher Block Chaining (CBC) has been implemented.
Twofish, Serpent, and CAST256 are planned for release soon.
Crypt is written entirely in ruby so deployment is simple -
no platform concerns, no library dependencies, nothing to compile.
WWW: http://crypt.rubyforge.org/

View file

@ -0,0 +1,10 @@
%%RUBY_SITELIBDIR%%/crypt/blowfish.rb
%%RUBY_SITELIBDIR%%/crypt/blowfish-tables.rb
%%RUBY_SITELIBDIR%%/crypt/cbc.rb
%%RUBY_SITELIBDIR%%/crypt/gost.rb
%%RUBY_SITELIBDIR%%/crypt/idea.rb
%%RUBY_SITELIBDIR%%/crypt/noise.rb
%%RUBY_SITELIBDIR%%/crypt/rijndael-tables.rb
%%RUBY_SITELIBDIR%%/crypt/rijndael.rb
%%RUBY_SITELIBDIR%%/crypt/stringxor.rb
@dirrm %%RUBY_SITELIBDIR%%/crypt