Sorry not sure if I should ask this here or at the extension... caus the extension post looks very clean.
Anyway, I am trying to use the AESFusion with Flash with it encrypting the string with a 16 char key. Then I use the Get Object to sent it over to a .aspx page.
I am trying to decrypt it at the .aspx but I have gone partially nuts trying to figure it out.
I know it's AES, I have used the Rijndael algo with the following assumption...
1. The key passed into the AES is converted to a byte array so using a "888888..." will give you a {56,56,56,56,56...}
2. I am using the cypher mode to ECB.
3. Pading mode to PKCS7.
4. I defaulted the IV by not doing anything to it.
5. The output of the encryption is Hex value.
6. Keysize of 128
7. Blocksize of 128
The closest I get when encrypting "hello" with the "8888888888888888" key using the AESFusion in MMF is
356F21A8FA105D5EE5B81A28906D44BC
while the .aspx I am making churns out
D3575367ED69EA6FDC11F7133A38EA7
I am sure there are something wrong somewhere but if someone got it right, please share the settings if possible. Thank you![]()