diff options
author | roam <roam@FreeBSD.org> | 2000-12-13 01:12:36 +0800 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2000-12-13 01:12:36 +0800 |
commit | 50bdf4717b3d41a6cd847090df14d988ba16c762 (patch) | |
tree | 4cd4e5d9bcfac19220d0176e3d6ae2764a812102 /security/aescrypt | |
parent | 3433bc60e4ae4d51a9bcd4dac2ffd075626675c7 (diff) | |
download | freebsd-ports-gnome-50bdf4717b3d41a6cd847090df14d988ba16c762.tar.gz freebsd-ports-gnome-50bdf4717b3d41a6cd847090df14d988ba16c762.tar.zst freebsd-ports-gnome-50bdf4717b3d41a6cd847090df14d988ba16c762.zip |
A command-line Rijndael (AES) encryption/decryption utility.
Diffstat (limited to 'security/aescrypt')
-rw-r--r-- | security/aescrypt/Makefile | 22 | ||||
-rw-r--r-- | security/aescrypt/distinfo | 1 | ||||
-rw-r--r-- | security/aescrypt/pkg-comment | 1 | ||||
-rw-r--r-- | security/aescrypt/pkg-descr | 15 | ||||
-rw-r--r-- | security/aescrypt/pkg-plist | 4 |
5 files changed, 43 insertions, 0 deletions
diff --git a/security/aescrypt/Makefile b/security/aescrypt/Makefile new file mode 100644 index 000000000000..fac91c5b7d41 --- /dev/null +++ b/security/aescrypt/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: aescrypt +# Date created: 12 December 2000 +# Whom: roam@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= aescrypt +PORTVERSION= 0.6 +CATEGORIES= security +MASTER_SITES= http://aescrypt.sourceforge.net/ +MASTER_SITE_SUBDIR=aescrypt + +MAINTAINER= roam@FreeBSD.org + +GNU_CONFIGURE= yes + +post-install: + ${MKDIR} ${PREFIX}/share/doc/aescrypt + ${INSTALL_DATA} ${WRKSRC}/README.html ${PREFIX}/share/doc/aescrypt + +.include <bsd.port.mk> diff --git a/security/aescrypt/distinfo b/security/aescrypt/distinfo new file mode 100644 index 000000000000..c22e86b292e3 --- /dev/null +++ b/security/aescrypt/distinfo @@ -0,0 +1 @@ +MD5 (aescrypt-0.6.tar.gz) = 63731a0f8248b8bb7b63814c6206b170 diff --git a/security/aescrypt/pkg-comment b/security/aescrypt/pkg-comment new file mode 100644 index 000000000000..727f4c3a6cfc --- /dev/null +++ b/security/aescrypt/pkg-comment @@ -0,0 +1 @@ +A command-line AES encryption/decryption suite diff --git a/security/aescrypt/pkg-descr b/security/aescrypt/pkg-descr new file mode 100644 index 000000000000..52b758a06d43 --- /dev/null +++ b/security/aescrypt/pkg-descr @@ -0,0 +1,15 @@ +From the aescrypt README.html: + + This is a program for encrypting/decrypting streams of data using + Rijndael and Cipher Block Feedback mode (CFB-128). + + ... + + 5. This program was deliberately kept extremely simple. It is not + intended to be a full encryption solution, it is intended to be + used within scripts as part of a complete solution. Keychain + management, public key signatures, etc. are all expected to be + done external to this program. + +Author: Eric Lee Green <eric@estinc.com> +WWW: http://aescrypt.sourceforge.net/ diff --git a/security/aescrypt/pkg-plist b/security/aescrypt/pkg-plist new file mode 100644 index 000000000000..e2c849959cab --- /dev/null +++ b/security/aescrypt/pkg-plist @@ -0,0 +1,4 @@ +bin/aescrypt +bin/aesget +share/doc/aescrypt/README.html +@dirrm share/doc/aescrypt |