Base 64 Encryption || Python
In this we are going to see a basic program to get Base 64 Encryption in Python Programming Language.


import base64
encodedmsg = base64.b64encode(input("Enter Text to encrypt: ").encode())

print("Encoded text: ",encodedmsg)
decodedmsg = base64.b64decode(encodedmsg)
print("Decoded text: ",decodedmsg)

#Coded by Saahil

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post