You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am working on a flutter project where we need to encrypt a plaintext that is given in hex with a key that is also given in hex. We're using a package called encrypt which only accepts plaintext as String and most of the online AES tools also assume the plaintext to be String. So we tried converting the hex to String but to no avail, we always get the result longer than 16 bytes. This only seems to be the result with our particular String (that has special characters). So other Strings the length of the ciphertext is as expected.
I am working on a flutter project where we need to encrypt a plaintext that is given in hex with a key that is also given in hex. We're using a package called encrypt which only accepts plaintext as String and most of the online AES tools also assume the plaintext to be String. So we tried converting the hex to String but to no avail, we always get the result longer than 16 bytes. This only seems to be the result with our particular String (that has special characters). So other Strings the length of the ciphertext is as expected.
What we have tried so far and the results:
The text was updated successfully, but these errors were encountered: