Skip to content

Instantly share code, notes, and snippets.

@serxoz
Created July 14, 2022 08:40
Show Gist options
  • Save serxoz/d478d516d033897e2956b177dc729fad to your computer and use it in GitHub Desktop.
Save serxoz/d478d516d033897e2956b177dc729fad to your computer and use it in GitHub Desktop.
GPG Symmetrical Example
import gnupg
gpg = gnupg.GPG()
# cifrado simétrico
vaca = gpg.encrypt("esto é unha proba", [], symmetric=True, passphrase='1234')
print(vaca.data)
# b'-----BEGIN PGP MESSAGE-----\n\njA0EBwMCPaDu/4KW8In40kYBvzWul1ccpl4+GP4YVZHv4ppEZ3JydNIKPQViMvhO\nIndNIr2/+3dKFqifBQdZQiAr4X3U3R0QKeWbi1XOcGecPoj5L90m\n=dHQ6\n-----END PGP MESSAGE-----\n'
# descifrado
boi = gpg.decrypt(vaca.data, passphrase='1234')
print(boi.data)
# b'esto \xe9 unha proba'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment