This is a message digest library for Lua. It is based on the routines
in OpenSSL and Apple CommonDigest. The library supports the following
digests: md2, md4, md5, sha1, sha224, sha256, sha384, sha512.

To build the library and run a simple test, just do make.
If Lua is not installed in /usr/local, tell make:
	make LUA_TOPDIR=/var/tmp/lhf/lua-5.3.5/install

To install the library where Lua can find it, use a variant of these:
	make install
	sudo make install
	sudo make install LIBDIR=/usr/local/lib/lua/5.3

For detailed installation instructions, see
	http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/install.html

The library is simple and intuitive; see the summary below.
Read test.lua to see the library in action.

This code is hereby placed in the public domain and also under the MIT license.

Please send comments, suggestions, and bug reports to lhf@tecgraf.puc-rio.br .

digest library:
clone(c)	hexdigest(c[s])	reset(c)
digest(c[s])	new()		update(c,s,...)
