mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
Add lep 0.30,
LEP is my attempt to provide a simple yet effective crypto system that focuses largely on streamlining tasks and less on elaborate inclusion of algorithms (MD5 and Blowfish are the only official algorithms used, both of which are linked in from -lcrypto), and also has some simple implementations of classic cipher design (transposition, byte swapping, caesar, XOR, hex encoding, etc) which can fit into the same operation chain, relieving the need for OS overhead with process spawning and piping. PR: ports/66659 Submitted by: Dmitri Nikulin <setagllib@optusnet.com.au>
This commit is contained in:
parent
ee4ceb5c27
commit
f2ac14b77d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=109197
@ -151,6 +151,7 @@
|
||||
SUBDIR += labrea
|
||||
SUBDIR += lcrzo
|
||||
SUBDIR += lcrzoex
|
||||
SUBDIR += lep
|
||||
SUBDIR += libassuan
|
||||
SUBDIR += libbf
|
||||
SUBDIR += libecc
|
||||
|
26
security/lep/Makefile
Normal file
26
security/lep/Makefile
Normal file
@ -0,0 +1,26 @@
|
||||
# New ports collection makefile for: lep
|
||||
# Date created: 15 May 2004
|
||||
# Whom: Dmitri Nikulin <setagllib@optusnet.com.au>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= lep
|
||||
PORTVERSION= 0.30
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= http://members.optusnet.com.au/setagllib/
|
||||
|
||||
MAINTAINER= setagllib@optusnet.com.au
|
||||
COMMENT= Lesser Encryption Project
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_OPENSSL= yes
|
||||
|
||||
MAN1= lep.1
|
||||
PLIST_FILES= bin/lep
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/lep ${PREFIX}/bin
|
||||
${INSTALL_MAN} ${WRKSRC}/lep.1 ${MANPREFIX}/man/man1
|
||||
|
||||
.include <bsd.port.mk>
|
2
security/lep/distinfo
Normal file
2
security/lep/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
MD5 (lep-0.30.tar.bz2) = e92500ba80dca6cdc5a69674770443b0
|
||||
SIZE (lep-0.30.tar.bz2) = 5551
|
7
security/lep/pkg-descr
Normal file
7
security/lep/pkg-descr
Normal file
@ -0,0 +1,7 @@
|
||||
LEP - Lesser Encryption Project
|
||||
|
||||
Provides flexible chaining of simple encryption tasks in a
|
||||
lightweight software package.
|
||||
|
||||
WWW: None yet
|
||||
setagllib@optusnet.com.au
|
Loading…
Reference in New Issue
Block a user