Add rubygem-ed25519 1.2.4
ed25519.rb is a Ruby binding to the Ed25519 elliptic curve public-key signature system described in RFC 8032. Two implementations are provided: a MRI C extension which uses the "ref10" implementation from the SUPERCOP benchmark suite, and a pure Java version based on str4d/ed25519-java. Ed25519 is one of two notable algorithms implemented atop the Curve25519 elliptic curve. The x25519 gem is a related project of this one, and implements the X25519 Diffie-Hellman key exchange algorithm on the Montgomery form of Curve25519. WWW: https://github.com/crypto-rb/ed25519
This commit is contained in:
parent
a5aa446856
commit
8fbf65d618
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=471407
4 changed files with 35 additions and 0 deletions
|
@ -1103,6 +1103,7 @@
|
|||
SUBDIR += rubygem-doorkeeper-openid_connect12
|
||||
SUBDIR += rubygem-doorkeeper-rails5
|
||||
SUBDIR += rubygem-doorkeeper-rails50
|
||||
SUBDIR += rubygem-ed25519
|
||||
SUBDIR += rubygem-encryptor
|
||||
SUBDIR += rubygem-ezcrypto
|
||||
SUBDIR += rubygem-googleauth
|
||||
|
|
18
security/rubygem-ed25519/Makefile
Normal file
18
security/rubygem-ed25519/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= ed25519
|
||||
PORTVERSION= 1.2.4
|
||||
CATEGORIES= security rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
MAINTAINER= sunpoet@FreeBSD.org
|
||||
COMMENT= Ruby binding to the Ed25519 (RFC 8032)
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
USE_RUBY= yes
|
||||
USES= gem
|
||||
|
||||
.include <bsd.port.mk>
|
3
security/rubygem-ed25519/distinfo
Normal file
3
security/rubygem-ed25519/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1527946165
|
||||
SHA256 (rubygem/ed25519-1.2.4.gem) = dc62c3491e9484d566519ab2bfca1406c7527694c902e6d05074c3a33ecab3b8
|
||||
SIZE (rubygem/ed25519-1.2.4.gem) = 137216
|
13
security/rubygem-ed25519/pkg-descr
Normal file
13
security/rubygem-ed25519/pkg-descr
Normal file
|
@ -0,0 +1,13 @@
|
|||
ed25519.rb is a Ruby binding to the Ed25519 elliptic curve public-key signature
|
||||
system described in RFC 8032.
|
||||
|
||||
Two implementations are provided: a MRI C extension which uses the "ref10"
|
||||
implementation from the SUPERCOP benchmark suite, and a pure Java version based
|
||||
on str4d/ed25519-java.
|
||||
|
||||
Ed25519 is one of two notable algorithms implemented atop the Curve25519
|
||||
elliptic curve. The x25519 gem is a related project of this one, and implements
|
||||
the X25519 Diffie-Hellman key exchange algorithm on the Montgomery form of
|
||||
Curve25519.
|
||||
|
||||
WWW: https://github.com/crypto-rb/ed25519
|
Loading…
Reference in a new issue