From 4fc123981514c7087114e08ee8ca63de1a1db59f Mon Sep 17 00:00:00 2001 From: Ben McGinnes Date: Sun, 17 May 2015 02:30:13 +1000 Subject: [PATCH] Updated string and key data * Text changed to byte literals. * Changed key type to RSA/RSA. * Changed expiry to the future (2020). --- lang/py3-pyme/examples/genkey.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lang/py3-pyme/examples/genkey.py b/lang/py3-pyme/examples/genkey.py index a9875582..6c4b2d8c 100755 --- a/lang/py3-pyme/examples/genkey.py +++ b/lang/py3-pyme/examples/genkey.py @@ -28,16 +28,16 @@ c.set_progress_cb(callbacks.progress_stdout, None) # This example from the GPGME manual -parms = """ -Key-Type: DSA -Key-Length: 1024 -Subkey-Type: ELG-E -Subkey-Length: 1024 +parms = b""" +Key-Type: RSA +Key-Length: 2048 +Subkey-Type: RSA +Subkey-Length: 2048 Name-Real: Joe Tester Name-Comment: with stupid passphrase Name-Email: joe@foo.bar Passphrase: abcdabcdfs -Expire-Date: 2010-08-15 +Expire-Date: 2020-12-31 """