1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

security/rubygem-bcrypt: add rubygem-bcrypt port

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
This commit is contained in:
Steve Wills 2014-08-26 15:07:44 +00:00
parent 8d84a32125
commit 2128e26f38
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=366219
4 changed files with 24 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,16 @@
# Created by: Steve Wills <swills@FreeBSD.org>
# $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 <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/bcrypt-3.1.7.gem) = 1c30953152c7151eac21aa59eed7ea933a7bc5d5838edea1d30d79b005955702
SIZE (rubygem/bcrypt-3.1.7.gem) = 43520

View File

@ -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