irrlicht/source/Irrlicht/aesGladman
cutealien 229c827870 Prevent some fallthrough warnings we got since gcc7 in aes
Interestingly those can be suppressed with simple comments.
Note that I didn't suppress those in zlib code yet as I'll check for updates for those libs before releasing (while we are pretty much stuck with this AES version unless we put in a lot more work).


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6040 dfc29bdd-3216-0410-991c-e03cc46cb475
2020-01-04 16:22:12 +00:00
..
aes.h Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
aescrypt.cpp Prevent some fallthrough warnings we got since gcc7 in aes 2020-01-04 16:22:12 +00:00
aeskey.cpp Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
aesopt.h Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
aestab.cpp Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
fileenc.cpp Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
fileenc.h Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
hmac.cpp Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
hmac.h Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
prng.cpp Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
prng.h Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
pwd2key.cpp Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
pwd2key.h Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
Readme.txt Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
sha1.cpp Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
sha1.h Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00
sha2.cpp Prevent some fallthrough warnings we got since gcc7 in aes 2020-01-04 16:22:12 +00:00
sha2.h Avoid warning and make local variable lower-case. 2019-12-12 16:32:41 +00:00

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