From owner-svn-ports-head@FreeBSD.ORG Wed Jan 14 18:35:33 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5E516236; Wed, 14 Jan 2015 18:35:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F1D2943; Wed, 14 Jan 2015 18:35:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0EIZXT7039149; Wed, 14 Jan 2015 18:35:33 GMT (envelope-from az@FreeBSD.org) Received: (from az@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0EIZVEZ039144; Wed, 14 Jan 2015 18:35:31 GMT (envelope-from az@FreeBSD.org) Message-Id: <201501141835.t0EIZVEZ039144@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: az set sender to az@FreeBSD.org using -f From: Andrej Zverev Date: Wed, 14 Jan 2015 18:35:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377035 - in head/security: . asignify X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jan 2015 18:35:33 -0000 Author: az Date: Wed Jan 14 18:35:31 2015 New Revision: 377035 URL: https://svnweb.freebsd.org/changeset/ports/377035 QAT: https://qat.redports.org/buildarchive/r377035/ Log: New port: security/asignify Asignify tool is heavily inspired by signify used in OpenBSD. However, the main goal of this project is to define high level API for signing files, validating signatures and encrypting using public keys cryptography. Asignify is designed to be portable and self-contained with zero external dependencies. It uses blake2b as the hash function and ed25519 implementation from tweetnacl. Key features: - Zero dependencies (libc and C compiler are likely required though), so it could be easily used in embedded systems. - Modern cryptography primitives (ed25519, blake2 and sha512 namely). - Ability to encrypt files with the same keys using curve25519 based cryptobox. - Protecting secret keys by passwords using PBKDF2-BLAKE2 routine. - Asignify can convert ssh ed25519 private keys to the native format and verify signatures using just ssh ed25519 public keys (without intermediate conversions). - Asignify provides high level API for application developers for signing, verifying, encrypting and keys generation. - All keys, signatures and encrypted files contain version information allowing to change cryptographical primitives in the future without loosing of backward compatibility. Added: head/security/asignify/ head/security/asignify/Makefile (contents, props changed) head/security/asignify/distinfo (contents, props changed) head/security/asignify/pkg-descr (contents, props changed) head/security/asignify/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Jan 14 18:28:28 2015 (r377034) +++ head/security/Makefile Wed Jan 14 18:35:31 2015 (r377035) @@ -22,6 +22,7 @@ SUBDIR += arirang SUBDIR += arm SUBDIR += arpCounterattack + SUBDIR += asignify SUBDIR += authforce SUBDIR += autossh SUBDIR += avcheck Added: head/security/asignify/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/asignify/Makefile Wed Jan 14 18:35:31 2015 (r377035) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= asignify +PORTVERSION= 1.0 +CATEGORIES= security +MASTER_SITES= http://highsecure.ru/distfiles/ + +MAINTAINER= vsevolod@FreeBSD.org +COMMENT= Yet another signify tool + +LICENSE= BSD2CLAUSE + +USES= tar:xz libtool + +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip + +.include Added: head/security/asignify/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/asignify/distinfo Wed Jan 14 18:35:31 2015 (r377035) @@ -0,0 +1,2 @@ +SHA256 (asignify-1.0.tar.xz) = b94e60d160ae1b7d61292d8305d71ac0d5e3b37fb8ae4645fe698bcd0338115c +SIZE (asignify-1.0.tar.xz) = 267804 Added: head/security/asignify/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/asignify/pkg-descr Wed Jan 14 18:35:31 2015 (r377035) @@ -0,0 +1,23 @@ +Asignify tool is heavily inspired by signify used in OpenBSD. However, the main +goal of this project is to define high level API for signing files, validating +signatures and encrypting using public keys cryptography. Asignify is designed +to be portable and self-contained with zero external dependencies. It uses +blake2b as the hash function and ed25519 implementation from tweetnacl. + +Key features: + +- Zero dependencies (libc and C compiler are likely required though), so it + could be easily used in embedded systems. +- Modern cryptography primitives (ed25519, blake2 and sha512 namely). +- Ability to encrypt files with the same keys using curve25519 based cryptobox. +- Protecting secret keys by passwords using PBKDF2-BLAKE2 routine. +- Asignify can convert ssh ed25519 private keys to the native format and verify + signatures using just ssh ed25519 public keys (without intermediate + conversions). +- Asignify provides high level API for application developers for signing, + verifying, encrypting and keys generation. +- All keys, signatures and encrypted files contain version information allowing + to change cryptographical primitives in the future without loosing of + backward compatibility. + +WWW: https://github.com/vstakhov/asignify/ Added: head/security/asignify/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/asignify/pkg-plist Wed Jan 14 18:35:31 2015 (r377035) @@ -0,0 +1,7 @@ +bin/asignify +include/asignify.h +lib/libasignify.a +lib/libasignify.so +lib/libasignify.so.1 +lib/libasignify.so.1.0.0 +man/man1/asignify.1.gz