Lua_AES
Lua_AES copied to clipboard
sometimes when encrypting a string, and decrypting it later there seems to be a chance of inconsistant results. when writing the string into a file it appears that when decrypted...
It seems like the the AES implementation in AES.lua is not actually AES. This library is consistent with itself, but not with the rest of the world. ## Comparison against...
Thanks for posting this. I've spent sometime to see if this could be made to execute any much faster than it it already does. The xor8 and the Galois field...
Based on the issue that: ```lua ECB_256(encrypt, 0, "012345689ABCDEF") == ECB_256(encrypt, 255, "0123456789ABCDEF") ``` Buggy part (the schedule256 function): ```lua -- we skip the first element of the key bytes...