Encrypy and decrypt a string using a key (using the base64 m
Code: "encrypted_string.py". Programming language: Python DMelt Version 1.4. Last modified: 08/25/1973. License: Pro
https://datamelt.org/code/cache/encrypted_string_3884.py
To run this script using the DMelt IDE, copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.


from jehep.ui import Security
key = "1234567891234567";
data = "example";
print "data=",data
mess=Security.encrypt(data, key);
print "Encrypted=",mess
print "Decrypted=",Security.decrypt(mess, key)


You see the box below because you did not login.