Welcome !
I'm using 3ds Max and Irrlicht 1.3.1 engine so far I'm only thinking about security of my media files (*.tga, *.bmp, *. jpg, *.wav). In example my media folder has been compressed into zip file and I can not use a password because while programme is running an error is shown on my screen I don't have any idea how to resolve it I was looking for Virtual File System but nothing has been found Also compiling resources in exe files is so complicated for me
Using password on my "media" folder
Search the forum for SQL
ShadowMapping for Irrlicht!: Get it here
Need help? Come on the IRC!: #irrlicht on irc://irc.freenode.net
Need help? Come on the IRC!: #irrlicht on irc://irc.freenode.net
Abouth the SQL, try this:
http://www.sqlite.org/index.html
Can someone shed some light on how does SQL DB can help in this situation please?
Thanks.
http://www.sqlite.org/index.html
Can someone shed some light on how does SQL DB can help in this situation please?
Thanks.
MasterGod, search the Irrlicht forum for SQL.
ShadowMapping for Irrlicht!: Get it here
Need help? Come on the IRC!: #irrlicht on irc://irc.freenode.net
Need help? Come on the IRC!: #irrlicht on irc://irc.freenode.net
-
- Posts: 275
- Joined: Fri May 12, 2006 6:37 pm
- Location: Germany
you could crypt that stuff yourself..
(its not THAT hard ) I implemented RC6 in ASM in two days.. So I guess it should be possible to do it in one in c++/any other high level language.
RC6 is an symetric encryption, that took part at the AES contest and made place 5 or stuff. To be honest its wounded, soyou would need less than pure brute force trys, but if take enought rounds (20 for example) on who would like to break it would need way more than 2^200 operations.
I use 128 rounds myself which is kind of useless much but its still as fast as 10GB per second (in asm..) of course file loading is WAY slower, so you will never get this performance, but well, its fast enought...
here are some weblinks that might turn out to be usefull:
Wikipedia:
http://de.wikipedia.org/wiki/RC6
Cpp source:
http://www.koders.com/cpp/fidB3A4687520 ... aspx?s=RC6
http://www.codeproject.com/cpp/hexenc.asp
ASM source:
http://www.koders.com/assembler/fid45E3 ... aspx?s=RC6
(its not THAT hard ) I implemented RC6 in ASM in two days.. So I guess it should be possible to do it in one in c++/any other high level language.
RC6 is an symetric encryption, that took part at the AES contest and made place 5 or stuff. To be honest its wounded, soyou would need less than pure brute force trys, but if take enought rounds (20 for example) on who would like to break it would need way more than 2^200 operations.
I use 128 rounds myself which is kind of useless much but its still as fast as 10GB per second (in asm..) of course file loading is WAY slower, so you will never get this performance, but well, its fast enought...
here are some weblinks that might turn out to be usefull:
Wikipedia:
http://de.wikipedia.org/wiki/RC6
Cpp source:
http://www.koders.com/cpp/fidB3A4687520 ... aspx?s=RC6
http://www.codeproject.com/cpp/hexenc.asp
ASM source:
http://www.koders.com/assembler/fid45E3 ... aspx?s=RC6