In Delphi XE2, with Turbopower Lockbox-3, I use the following code to encrypt a string:
Codec1.EncryptString('AText', Encrypted);
Cipher is [AES-192]
, ChainMode is PCBC
.
However, this produces a different result each time I encrypt the same string using the same settings.
How can I always get the identical result string with the identical settings? (Password, Cipher, ChainMode, etc.).