Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Jun 2018 22:24:47 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r471407 - in head/security: . rubygem-ed25519
Message-ID:  <201806022224.w52MOlZd031270@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Jun  2 22:24:47 2018
New Revision: 471407
URL: https://svnweb.freebsd.org/changeset/ports/471407

Log:
  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

Added:
  head/security/rubygem-ed25519/
  head/security/rubygem-ed25519/Makefile   (contents, props changed)
  head/security/rubygem-ed25519/distinfo   (contents, props changed)
  head/security/rubygem-ed25519/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sat Jun  2 22:03:00 2018	(r471406)
+++ head/security/Makefile	Sat Jun  2 22:24:47 2018	(r471407)
@@ -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

Added: head/security/rubygem-ed25519/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rubygem-ed25519/Makefile	Sat Jun  2 22:24:47 2018	(r471407)
@@ -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>

Added: head/security/rubygem-ed25519/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rubygem-ed25519/distinfo	Sat Jun  2 22:24:47 2018	(r471407)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1527946165
+SHA256 (rubygem/ed25519-1.2.4.gem) = dc62c3491e9484d566519ab2bfca1406c7527694c902e6d05074c3a33ecab3b8
+SIZE (rubygem/ed25519-1.2.4.gem) = 137216

Added: head/security/rubygem-ed25519/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/rubygem-ed25519/pkg-descr	Sat Jun  2 22:24:47 2018	(r471407)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806022224.w52MOlZd031270>