irrlicht/source/Irrlicht/aesGladman
hybrid 4a3f5d8068 Remove unused files.
git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2992 dfc29bdd-3216-0410-991c-e03cc46cb475
2009-12-05 14:17:26 +00:00
..
Readme.txt Create an initial stub for support of AES-encrypted zip files. This code is not yet functional. There is no way to specify the password, and it's unconditionally compiled in. But the basic algorithm is there, though untested so far. 2009-12-01 01:45:55 +00:00
aes.h Start port of aes lib to c++. 2009-12-04 17:24:31 +00:00
aescrypt.cpp Rename files to cpp. 2009-12-04 17:29:23 +00:00
aeskey.cpp Rename files to cpp. 2009-12-04 17:29:23 +00:00
aesopt.h Fix aes loader, seems like no tables won't work. Added test to ensure proper decryption. 2009-12-04 18:42:07 +00:00
aestab.cpp Rename files to cpp. 2009-12-04 17:29:23 +00:00
fileenc.cpp Rename files to cpp. 2009-12-04 17:29:23 +00:00
fileenc.h Start port of aes lib to c++. 2009-12-04 17:24:31 +00:00
hmac.cpp Rename files to cpp. 2009-12-04 17:29:23 +00:00
hmac.h Start port of aes lib to c++. 2009-12-04 17:24:31 +00:00
prng.cpp Rename files to cpp. 2009-12-04 17:29:23 +00:00
prng.h Start port of aes lib to c++. 2009-12-04 17:24:31 +00:00
pwd2key.cpp Rename files to cpp. 2009-12-04 17:29:23 +00:00
pwd2key.h Start port of aes lib to c++. 2009-12-04 17:24:31 +00:00
sha1.cpp Use irrlicht defines for endianess, and less memory consuming ops. 2009-12-04 18:13:19 +00:00
sha1.h Start port of aes lib to c++. 2009-12-04 17:24:31 +00:00
sha2.cpp Fix warnings found by randomMesh 2009-12-05 01:14:26 +00:00
sha2.h Fix compilation under Solaris. 2009-12-05 12:48:02 +00:00

Readme.txt

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

A File Encryption Utility - VC++ 7.1 project Instructions

1.	Unzip the enclosed files into a suitable VC++ project directory.
2.	Obtain the bzip2 source code from http://sources.redhat.com/bzip2/
	and unzip the files into the bzip2 sub-directory.
3.	Compile the bzip2 project to give a static library
4.	Compile the encfile project.
5.	The executable encfile.exe is now ready for use:

		enfile password filename
	
	If the filename does not have the extension 'enc', it is assumed to 
	be a normal file that will then be encrypted to a file with the same
	name but with an added extension 'enc'.
	
	If the filename has the extension 'enc' its is assumed to be an 
	encrypted file that will be decrypted to a file with the same name
	but without the 'enc' extension.

The default HASH function is SHA1, which is set up by defining USE_SHA1 in
compiling the project.  If USE_SHA256 is defined instead then SHA256 is used.

Brian Gladman