aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/examples/howto (follow)
Commit message (Collapse)AuthorAgeFilesLines
* example: verify signaturesBen McGinnes2018-03-211-0/+64
| | | | | * Added example for verifying detached signatures against the files they're the signatures for.
* example: verify signed fileBen McGinnes2018-03-211-0/+61
| | | | * Added example to verify normal and clearsigned files.
* example: detach sign fileBen McGinnes2018-03-211-0/+64
| | | | * Added example to make detached signatures of a file with key selection.
* example: encrypt-sign-file.pyBen McGinnes2018-03-211-2/+2
| | | | * Adjusted the doc string.
* examples: doc stringsBen McGinnes2018-03-212-2/+4
| | | | * Fixed minor errors in two doc strings.
* example: clear signingBen McGinnes2018-03-211-0/+56
| | | | * Added example to clear sign a file with signing key selection.
* example: sign fileBen McGinnes2018-03-211-0/+63
| | | | | | | * Similar to encrypt file except for signing a file in normal mode. * Noticed additional changes to be made to the howto to match this, but they will have to wait due to a power outage (currently running on battery and a mobile connection, but that won't last).
* example: keycountBen McGinnes2018-03-201-1/+1
| | | | * Fixed missing parenthesis.
* example: decrypt fileBen McGinnes2018-03-201-0/+44
| | | | * Decrypts a file taking file names as command line parameters.
* example: groups work-aroundBen McGinnes2018-03-201-0/+44
| | | | | | | * Added groups selection work around code. * Intended for use as a module to be imported by other scripts, usually with "from groups import group_lists" or "from groups import group_lines" or similar.
* example: encrypt fileBen McGinnes2018-03-191-8/+14
| | | | | * Nested encryption in try/except statement in case recipient key is untrusted or invalid.
* example: sign and encrypt fileBen McGinnes2018-03-191-0/+70
| | | | | | | * 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.
* example: encrypt fileBen McGinnes2018-03-191-1/+1
| | | | * Fixed typo in second encryption call.
* example: encrypt fileBen McGinnes2018-03-191-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.
* example: python bindings key countBen McGinnes2018-03-191-0/+42
| | | | | * Added script wo count the number of keys in both the public and secret key stores.
* doc: python bindings examplesBen McGinnes2018-03-191-0/+6
| | | | | * Explicitly stated that all this code is released under the GPLv2+ and the LGPLv2.1+.
* doc: python bindings example READMEBen McGinnes2018-03-191-0/+28
| | | | | | | * Added the same license as used with the HOWTO. * Since these examples are so basic, they'll be dual licensed the same as GPGME itself (otherwise it would slip too dangerously against the need for permissive licensing of crypto libraries).
* docs: python bindings examplesBen McGinnes2018-03-191-0/+24
* Added reference to location where all the examples included in the HOWTO will be available as executable scripts. * Included a short README file in that location.