diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2005-11-23 05:15:03 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2005-11-23 05:15:03 +0000 |
commit | e80ae8339a353f809cd7a36f0b4c74c30e2f3d1b (patch) | |
tree | e613f37c5fbecfb8346b677cf3d503bd186799f2 /security | |
parent | 7e7cc5898f9ced5cc15efea852106a03bdb031c1 (diff) | |
download | ports-e80ae8339a353f809cd7a36f0b4c74c30e2f3d1b.tar.gz ports-e80ae8339a353f809cd7a36f0b4c74c30e2f3d1b.zip |
Notes
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/md5coll/Makefile | 36 | ||||
-rw-r--r-- | security/md5coll/distinfo | 3 | ||||
-rw-r--r-- | security/md5coll/pkg-descr | 12 | ||||
-rw-r--r-- | security/md5coll/pkg-message | 4 |
5 files changed, 56 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 5308e7c26b2d..3e448a0f8b4b 100644 --- a/security/Makefile +++ b/security/Makefile @@ -219,6 +219,7 @@ SUBDIR += makepasswd SUBDIR += manipulate_data SUBDIR += mcrypt + SUBDIR += md5coll SUBDIR += md5deep SUBDIR += mdcrack SUBDIR += metasploit diff --git a/security/md5coll/Makefile b/security/md5coll/Makefile new file mode 100644 index 000000000000..047422f41c3b --- /dev/null +++ b/security/md5coll/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: md5 collision generator +# Date created: Wed Nov 23 04:51:32 UTC 2005 +# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= md5coll +DISTVERSION= 0.1 +CATEGORIES= security +MASTER_SITES= http://www.stachliu.com/ +DISTNAME= ${PORTNAME}.c +EXTRACT_SUFX= +EXTRACT_ONLY= + +MAINTAINER= lioux@FreeBSD.org +COMMENT= Fast MD5 collision generator + +ONLY_FOR_ARCHS= i386 + +NO_WRKSUBDIR= yes +PLIST_FILES= bin/${PORTNAME} + +post-extract: + @${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC} + +do-build: + ${CC} ${CFLAGS} ${WRKSRC}/${DISTNAME} -o ${WRKSRC}/${PORTNAME} + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +post-install: + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> diff --git a/security/md5coll/distinfo b/security/md5coll/distinfo new file mode 100644 index 000000000000..258dbf545fff --- /dev/null +++ b/security/md5coll/distinfo @@ -0,0 +1,3 @@ +MD5 (md5coll.c) = 1c5d6641d6d07d8a7b510d44d5b4da04 +SHA256 (md5coll.c) = ce00158446d946f0333baec9f38470f3670d46c1086d3d71b28ddee5313c5542 +SIZE (md5coll.c) = 45352 diff --git a/security/md5coll/pkg-descr b/security/md5coll/pkg-descr new file mode 100644 index 000000000000..bf77f2e7354c --- /dev/null +++ b/security/md5coll/pkg-descr @@ -0,0 +1,12 @@ +[ excerpt from developer's www site with modifications ] + +Faster implementation of techniques in How to Break MD5 and Other +Hash Functions, by Xiaoyun Wang, et al. + +MD5 Collision Generator by Patrick Stach <pstach@stachliu.com>. +Implementation of paper by Xiaoyun Wang, et all. + +Author: Patrick Stach <pstach@stachliu.com> +WWW: http://www.stachliu.com/collisions.html + +-- lioux@FreeBSD.org diff --git a/security/md5coll/pkg-message b/security/md5coll/pkg-message new file mode 100644 index 000000000000..40d6398f33e5 --- /dev/null +++ b/security/md5coll/pkg-message @@ -0,0 +1,4 @@ +--------------------------------------------------------------------- +Please check http://www.stachliu.com/collisions.html for instructions +on how to use this application. +--------------------------------------------------------------------- |