From 4bd0fa843176a112c054929fbe6dd99f45d718a2 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Mon, 18 Aug 2014 12:52:50 -0500 Subject: Imported Upstream version 1.3.1 --- README | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'README') diff --git a/README b/README index 11e0f78..9e07335 100644 --- a/README +++ b/README @@ -36,19 +36,18 @@ and import the module like so: The primary interface class you'll likely want to interact with is [```gnupg.GPG```](https://python-gnupg.readthedocs.org/en/latest/gnupg.html#gpg): ``` ->>> gpg = gnupg.GPG(gpgbinary='/usr/bin/gpg', -... gpghome='./keys', -... pubring='pubring.gpg', +>>> gpg = gnupg.GPG(binary='/usr/bin/gpg', +... homedir='./keys', +... keyring='pubring.gpg', ... secring='secring.gpg') ->>> batch_key_input = gpg.gen_key_input() +>>> batch_key_input = gpg.gen_key_input( +... key_type='RSA', +... key_length=4096) >>> print batch_key_input Key-Type: RSA Name-Email: isis@wintermute -Name-Comment: Generated by gnupg.py Key-Length: 4096 Name-Real: Autogenerated Key -%pubring /home/isis/code/python-gnupg/keys/pubring.gpg -%secring /home/isis/code/python-gnupg/keys/secring.gpg %commit >>> key = gpg.gen_key(batch_key_input) -- cgit v1.2.3