I was wondering if I could encrypt a raw data so for example:
message = encrypt(raw_input("what is your message")) <---- I want this encrypted
Then in my server code, I want it unencrypted:
print unencrypt(str(message)) <----- I want this
I want it similar to this. How can I do it on Python 2.7?