irrlicht/source/Irrlicht/aesGladman
cutealien 967bc1ecee Merging r6039 through r6072 from trunk to ogl-es branch.
Note: Not yet caught up with trunk.


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/branches/ogl-es@6114 dfc29bdd-3216-0410-991c-e03cc46cb475
2020-06-12 15:42:43 +02:00
..
Readme.txt Merged revisions 2897:3173 from trunk. Huge update with uncountable fixes, additions, etc. 2010-01-23 20:13:43 +00:00
aes.h Merged revisions 2897:3173 from trunk. Huge update with uncountable fixes, additions, etc. 2010-01-23 20:13:43 +00:00
aescrypt.cpp Merging r6039 through r6072 from trunk to ogl-es branch. 2020-06-12 15:42:43 +02:00
aeskey.cpp Merge revision 5248:5253 from trunk to ogl-es. 2016-02-04 23:09:30 +00:00
aesopt.h Merged from trunk revisions 4185-4487. Huge update to latest 1.8 updates. 2013-03-28 17:04:07 +00:00
aestab.cpp Merged revisions 2897:3173 from trunk. Huge update with uncountable fixes, additions, etc. 2010-01-23 20:13:43 +00:00
fileenc.cpp Merge revisions r5337:r5415 from trunk to ogl-es. 2017-04-12 15:33:31 +00:00
fileenc.h Merged revisions 2897:3173 from trunk. Huge update with uncountable fixes, additions, etc. 2010-01-23 20:13:43 +00:00
hmac.cpp - Fixed Android compilation issues. 2013-01-17 04:12:34 +00:00
hmac.h - Updated ogl-es branch to rev4182. 2012-06-11 22:43:38 +00:00
prng.cpp - Fixed Android compilation issues. 2013-01-17 04:12:34 +00:00
prng.h Merged revisions 2897:3173 from trunk. Huge update with uncountable fixes, additions, etc. 2010-01-23 20:13:43 +00:00
pwd2key.cpp - Fixed Android compilation issues. 2013-01-17 04:12:34 +00:00
pwd2key.h Merged revisions 2897:3173 from trunk. Huge update with uncountable fixes, additions, etc. 2010-01-23 20:13:43 +00:00
sha1.cpp Merged revisions 2897:3173 from trunk. Huge update with uncountable fixes, additions, etc. 2010-01-23 20:13:43 +00:00
sha1.h Merged revisions 2897:3173 from trunk. Huge update with uncountable fixes, additions, etc. 2010-01-23 20:13:43 +00:00
sha2.cpp Merging r6039 through r6072 from trunk to ogl-es branch. 2020-06-12 15:42:43 +02:00
sha2.h Merge revision 5248:5253 from trunk to ogl-es. 2016-02-04 23:09:30 +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