From 0bcd78be9657f35dd27a02c16cb70234b1e44d5b Mon Sep 17 00:00:00 2001 From: n0p <0x90@n0p.cc> Date: Mon, 27 Oct 2014 19:07:43 +0100 Subject: Reversing challenge 300 from hack.lu 2014. --- src/des/README | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/des/README (limited to 'src/des/README') diff --git a/src/des/README b/src/des/README new file mode 100644 index 0000000..5280a0d --- /dev/null +++ b/src/des/README @@ -0,0 +1,28 @@ +Libmcrypt is a thread-safe library providing a uniform interface +to access several block and stream encryption algorithms. +Check the manual page for more information on libmcrypt. + +Look at COPYING for license information and the individual files for more +information. COPYING applies only for the mcrypt program and not the +algorithms which most of them are public domain. + +A mailing list on mcrypt is mcrypt-dev@lists.hellug.gr +Subscribe by visiting http://lists.hellug.gr/mailman/listinfo/mcrypt-dev + +** +** Some hints: + +Since 2.5.4 libmcrypt does not use dynamic loading for the modules by default. +All the algorithms and modes, are now included in the library. To enable +the old dynamic loading behaviour use the --enable-dynamic-loading in the +configure script. + +That way you can statically link the library and be 100% thread safe, +since dlopen is not always thread safe. + +You can also enable dynamic loading and include some algorithms into the +library. To include algorithms in the library use the +--with-included-algos parameter in the configure script. +Eg: ./configure --with-included-algos="rijndael-128 arcfour stream cbc cfb" + + -- cgit v1.2.3