Quote:
Originally posted by Xentala@Apr 9 2007, 14:38
:bandit: öhmm was macht man damit grins xD
Code:
So how to laod this table ?.. We know each letter is crypted with a other key! so 256 letters .. our file is .. 200*256 bytes big ( I am to boring to multiplizier it .. I already know there are 200 keys) so how many keys are here ? Yeah FileSize / 256 wink.gif How to load ? (in delphi) Code: type TCryptRow = packed record Byte: array[0..255] of char; end; var CryptTable: array[0..199] of TCryptRow; .. .. fil.read(CryptTable,sizeof(CryptTable)); //finish wink.gif Btw this is the encrypt ( i think ) for decrypt you need to genereat your own file.. mean when you know "A->!" you will know "!->A" easy to write -.-