data="">
iv=lxyssl.hash('md5'):digest(key)
e=lxyssl.aes(key):cfb_encrypt(data .. "a",iv)
d=lxyssl.aes(key):cfb_decrypt(e,iv)
assert(d==data .."a")
end
the main problem is: 'e' is empty..
Looking at the implementation of cfb_encrypt, it seems to me that the result is correctly pushed back into the stack..why can't I print it?
Any idea?
Thanks,
Valerio