aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/examples/howto/group-encrypt-sign-file.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-03-21examples: multi-key selection operationsben/docs/2018-03Ben McGinnes1-83/+0
* Temporarily removing multi-key selection based examples. * There are a few issues with getting the key selections to play nicely with gpg.Context().keylist object types. * Will troubleshoot them separately and restore them when that's worked out, but I don't want these more complicated examples to delay merging the HOWTO with master.
2018-03-21example: group encryptionBen McGinnes1-1/+1
* Troubleshooting.
2018-03-21example: sign and encrypt to groupBen McGinnes1-9/+22
* Begins to string together some of the simpler examples to do more useful things. * Signs and encrypts a file while encrypting to every key in a group specified in the gpg.conf file.
2018-03-21example: encrypt-sign-file.pyBen McGinnes1-2/+2
* Adjusted the doc string.
2018-03-19example: sign and encrypt fileBen McGinnes1-5/+11
* Example to sign and encrypt a file. * Similar to encrypt-file.py except all keys are considered trusted and signs with the default key. * Also encrypts to the default key.
2018-03-19example: encrypt fileBen McGinnes1-1/+1
* Fixed typo in second encryption call.
2018-03-19example: encrypt fileBen McGinnes1-0/+64
* Example to encrypt a file to a single key. * Takes key ID and/or fpr as a CLI parameter. * Takes path and filename as a CLI parameter. * Encrypts to specified key only, no signing and writes the output in both ASCII armoured and GPG binary formats with output filenames based on input filename.