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:

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"

That way you can statically link the library and be 100% thread safe,
since dlopen is not always thread safe.


To disable dynamic loading use the --disable-dynamic-loading parameter
to the configure script. Use with care. You must include some algorithms,
to do this, or you'll not be able to work at all.

