You are not logged in.
Pages: 1
Hi ,
Do you have a simple example of how doing that ?
Offline
With which encryption mode? Do you need key hashing?
Just take a look at the functions available in SynCrypto.pas.
See http://synopse.info/files/html/api-1.18/SynCrypto.html
Take a look at this one:
/// AES encryption using the TAES format with a supplied SHA256 password
// - last bytes (not part of 16 bytes blocks) are not crypted by AES, but with XOR
function AESSHA256(const s, Password: RawByteString; Encrypt: boolean): RawByteString; overload;
Offline
Thanks
Offline
Pages: 1