I'm wondering if I am missing something when :
a) I'm returned an encrypted string that starts with the same 10 caracters..
- Is that a normal thing or something is missing or wrong in the Encryption setting ?
b) Eventhough I dont change the data content to be crypted, the encryption resulting string will change each time - and encrypted chains is the correct one.
So I would say that the Encryption/decryption tasks seems to run fine.
(always retreives the same input string from the start).
What "worries" me is that the encription string returns always start with the same sequence of car : "U2FsdGVkX1" followed by a string that changes...
Code: Select all
on doEnCryptData
# ENCRYPTING AND ENCODING DATA
put "ABCDEF" into InPassword
put "345345" into InputData
encrypt InputData using "aes-256-cbc" with password InPassword
put base64Encode(It) into Field "Resu"
end doEnCryptData
Thanks
