Code: Select all
set KEY = "0xFE 0xCA 0xAD 0xDE"
filexor KEY
get LEN longHowever if I did something like
Code: Select all
math key = 0xDEADCAFE
filexor key
get LEN long
I need to constantly change the key by doing some math operations, like multiply by 3 and add 7 after each read operation, so I thought of just storing the key as a number rather than a string.


