Page 4 of 4

Re: Rabbit Cipher - Module

Posted: Sun Jan 17, 2021 9:56 am
by loulou2522
hI
Yes that's respond of what i want to do. Thanks
Another question
However, I wonder if the encryption key is well protected, on the other hand this key appears in clear text.
RC\SetKey( TOTO TATA TITI )
How to make sure that it does not appear in the executable otherwise the encryption is useless;

Re: Rabbit Cipher - Module

Posted: Mon Jan 18, 2021 12:45 am
by StarBootics
The only way in that case is to save the key in a DataSection but not as a string but as Numbers and convert it back in to string at runtime and then use it as a key. But for maximum security I recommend to create a PasswordRequester() and ask the user to enter the password and use this password as a Key for the RabbitCipher.

You can do the same for the InitVector.

Best regards
StarBootics