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 want be able to encrypt something with python2 and decrypt it with python3 and viceversa, I was expecting to see the encrypted text independent from the version of python used but something went wrong. Let's take this script:
This piece of software is taken from your example2 test code. I simply substituted the encoding with ASCII with UTF-8 to be able to cope with different encoding, but nothing changes with ASCII.
If you run this script with python2 or python3 the script works but differently: the two produce different encoded strings, so the two are not compatible with each other
I want be able to encrypt something with python2 and decrypt it with python3 and viceversa, I was expecting to see the encrypted text independent from the version of python used but something went wrong. Let's take this script:
This piece of software is taken from your example2 test code. I simply substituted the encoding with ASCII with UTF-8 to be able to cope with different encoding, but nothing changes with ASCII.
If you run this script with python2 or python3 the script works but differently: the two produce different encoded strings, so the two are not compatible with each other
How am I wrong?
The text was updated successfully, but these errors were encountered: