aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/examples/howto/export-key.py
diff options
context:
space:
mode:
authorBen McGinnes <[email protected]>2018-05-29 23:11:28 +0000
committerBen McGinnes <[email protected]>2018-05-29 23:11:28 +0000
commitfd4226429d923537ad5a04141163fdb5ee7c04db (patch)
treecbfce8f48a06db121bce64ca37aa7f13ac983244 /lang/python/examples/howto/export-key.py
parentexamples: python bindings (diff)
downloadgpgme-fd4226429d923537ad5a04141163fdb5ee7c04db.tar.gz
gpgme-fd4226429d923537ad5a04141163fdb5ee7c04db.zip
examples: exporting keysben/howto-update-05
* Fixed the descriptions and explanation of what happens if no search/user ID/key ID data is included (it exports the lot).
Diffstat (limited to 'lang/python/examples/howto/export-key.py')
-rwxr-xr-xlang/python/examples/howto/export-key.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/lang/python/examples/howto/export-key.py b/lang/python/examples/howto/export-key.py
index 108881de..5c3280b9 100755
--- a/lang/python/examples/howto/export-key.py
+++ b/lang/python/examples/howto/export-key.py
@@ -33,7 +33,10 @@ c = gpg.Context(armor=True)
k = gpg.Data()
print("""
-This script exports a secret key to a file.
+This script exports one or more public keys to a file.
+
+If the uer or key IDs are not included then all available public keys will be
+exported to a file (ASCII aroured).
""")
if len(sys.argv) > 3:
@@ -51,7 +54,7 @@ elif len(sys.argv) == 2:
else:
filepth = input("Enter the filename and path of the key file: ")
homedir = input("Enter the GPG configuration directory path (optional): ")
- keytext = input("Enter the user or key ID for export: ")
+ keytext = input("Enter the user or key ID for export (optional): ")
if homedir.startswith("~"):
if os.path.exists(os.path.expanduser(homedir)) is True: