mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
1c3762d85b
encryption. It runs on Unix-like operating systems and on Microsoft Win32. sbd features AES-CBC-128 + HMAC-SHA1 encryption (by Christophe Devine), program execution (-e option), choosing source port, continuous reconnection with delay, and some other nice features. Only TCP/IP communication is supported. Source code and binaries are distributed under the GNU General Public License. sbd can be used for any number of network-related things, e.g.: * Secure file transfer * Remote administration * Simple (but secure) peer-to-peer chat * Pen-test tool (crypto avoids NIDS detection and telnet-style traffic recording) PR: 68838 Submitted by: David Thiel <lx@redundancy.redundancy.org> Approved by: krion (mentor)
20 lines
358 B
Plaintext
20 lines
358 B
Plaintext
--- Makefile.orig Sat Jul 10 18:52:02 2004
|
|
+++ Makefile Sat Jul 10 18:53:56 2004
|
|
@@ -1,15 +1,13 @@
|
|
-CC = gcc
|
|
MAKE = make
|
|
|
|
# extra flags
|
|
-CFLAGS=
|
|
LDFLAGS=
|
|
|
|
# cflags
|
|
|
|
WIN_CFLAGS = -Wall -Wshadow -O2 -DWIN32
|
|
WINMAIN_CFLAGS = -mwindows -Wall -Wshadow -O2 -DWIN32 -DWINMAIN
|
|
-UNIX_CFLAGS = -Wall -Wshadow -O2
|
|
+UNIX_CFLAGS = -Wall -Wshadow
|
|
|
|
# ldflags
|
|
|