diff options
author | hubertf <hubertf> | 2000-10-31 01:17:40 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2000-10-31 01:17:40 +0000 |
commit | a23fd3596e0f6654d48aa02bb10589b69b63bcae (patch) | |
tree | 7bd83989cfc2766d0221883016556598d6573b82 /security/ssldump/Makefile | |
parent | 780857ffe462b61f930a5fd07d074aca38a0d628 (diff) | |
download | pkgsrc-a23fd3596e0f6654d48aa02bb10589b69b63bcae.tar.gz |
ssldump is an SSLv3/TLS network protocol analyzer. It identifies
TCP connections on the chosen network interface and attempts to
interpret them as SSLv3/TLS traffic. When it identifies SSLv3/TLS
traffic, it decodes the records and displays them in a textual form
to stdout. If provided with the appropriate keying material, it
will also decrypt the connections and display the application data
traffic.
Requested by Dan Winship.
Diffstat (limited to 'security/ssldump/Makefile')
-rw-r--r-- | security/ssldump/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/security/ssldump/Makefile b/security/ssldump/Makefile new file mode 100644 index 00000000000..688617c6f77 --- /dev/null +++ b/security/ssldump/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/10/31 01:17:40 hubertf Exp $ +# + +DISTNAME= ssldump-0.9a2 +CATEGORIES= security +MASTER_SITES= http://www.rtfm.com/ssldump/ + +MAINTAINER= hubertf@netbsd.org +HOMEPAGE= http://www.rtfm.com/ssldump/ + +GNU_CONFIGURE= YES +CONFIGURE_ARGS+=--with-pcap=/ \ + --with-pcap-inc=/usr/include \ + --with-pcap-lib=/usr/lib \ + --with-openssl=/ \ + --with-openssl-inc=/usr/include \ + --with-openssl-lib=/usr/lib + +.include "../../mk/bsd.pkg.mk" |