Date: Wed, 14 Jan 2015 18:35:31 +0000 (UTC) From: Andrej Zverev <az@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377035 - in head/security: . asignify Message-ID: <201501141835.t0EIZVEZ039144@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501141835.t0EIZVEZ039144>