Answers for "how to encrypt messages python"

3

how to encrypt a string python

from cryptography.fernet import Fernet
message = "my deep dark secret".encode()

f = Fernet(key)
encrypted = f.encrypt(message)
Posted by: Guest on June-15-2020
0

Encrypting a message in Python

# the directory where the keys are to be stored
# in this case we are using the current file directory
path = Path(__file__).absolute().parent

# initialize the encrypter
encryption = Encryption(path, name=('public_key.pem', 'private1.pem'))

# generates or load both private and public keys
encryption.load_keys() # or encryption.generate_keys()

encrypted = encryption.encrypt('hello world')

# return encrypted string

decrypted = encryption.decrypt(encrypted)

# returns a decrypted message 
# 'hello world'
Posted by: Guest on May-14-2021

Code answers related to "how to encrypt messages python"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language