From e0164aba2764ed36a24d7638b05c3075852ea3c1 Mon Sep 17 00:00:00 2001 From: drebs Date: Thu, 20 Dec 2012 12:42:34 -0200 Subject: Fix OpenPGP key generation. --- util.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'util.py') diff --git a/util.py b/util.py index 1485fce1..41fd4548 100644 --- a/util.py +++ b/util.py @@ -38,6 +38,12 @@ class GPGWrapper(): def import_keys(self, data): return self.gpg.import_keys(data) + def gen_key_input(self, **kwargs): + return self.gpg.gen_key_input(**kwargs) + + def gen_key(self, input): + return self.gpg.gen_key(input) + #---------------------------------------------------------------------------- # u1db Transaction and Sync logs. -- cgit v1.2.3