diff --git a/security/Makefile b/security/Makefile index e86f9893e3bd..214689e18415 100644 --- a/security/Makefile +++ b/security/Makefile @@ -866,6 +866,7 @@ SUBDIR += ruby-hmac SUBDIR += ruby-password SUBDIR += ruby-tcpwrap + SUBDIR += rubygem-bcrypt SUBDIR += rubygem-bcrypt-ruby SUBDIR += rubygem-ezcrypto SUBDIR += rubygem-gpgr diff --git a/security/rubygem-bcrypt/Makefile b/security/rubygem-bcrypt/Makefile new file mode 100644 index 000000000000..857a865802b8 --- /dev/null +++ b/security/rubygem-bcrypt/Makefile @@ -0,0 +1,16 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= bcrypt +PORTVERSION= 3.1.7 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= OpenBSD bcrypt password hashing algorithm + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include diff --git a/security/rubygem-bcrypt/distinfo b/security/rubygem-bcrypt/distinfo new file mode 100644 index 000000000000..5fe83b01e965 --- /dev/null +++ b/security/rubygem-bcrypt/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/bcrypt-3.1.7.gem) = 1c30953152c7151eac21aa59eed7ea933a7bc5d5838edea1d30d79b005955702 +SIZE (rubygem/bcrypt-3.1.7.gem) = 43520 diff --git a/security/rubygem-bcrypt/pkg-descr b/security/rubygem-bcrypt/pkg-descr new file mode 100644 index 000000000000..6bb8f0a40a10 --- /dev/null +++ b/security/rubygem-bcrypt/pkg-descr @@ -0,0 +1,5 @@ +bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD +project for hashing passwords. The bcrypt Ruby gem provides a simple wrapper +for safely handling passwords. + +WWW: https://github.com/codahale/bcrypt-ruby