summaryrefslogtreecommitdiff
path: root/src/leap/keymanager
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2014-08-27 12:59:28 -0300
committerdrebs <drebs@leap.se>2014-08-27 12:59:28 -0300
commit8f01d6b818a36014e21a13baaf6c5112ef9e9a35 (patch)
treee6c391e28001665b96657e3fc7c9996dfb38fa30 /src/leap/keymanager
parent0c6348fc64adbbe0a2dc55eb408186ec92bbc7c4 (diff)
Fix call to python-gnupg verify_file() method (#6022).
Diffstat (limited to 'src/leap/keymanager')
-rw-r--r--src/leap/keymanager/openpgp.py13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/leap/keymanager/openpgp.py b/src/leap/keymanager/openpgp.py
index 46ae2aa..ee37a34 100644
--- a/src/leap/keymanager/openpgp.py
+++ b/src/leap/keymanager/openpgp.py
@@ -22,12 +22,11 @@ import os
import re
import shutil
import tempfile
+import io
-from contextlib import closing
from gnupg import GPG
from gnupg.gnupg import GPGUtilities
-from gnupg._util import _make_binary_stream
from leap.common.check import leap_assert, leap_assert_type, leap_check
from leap.keymanager import errors
@@ -649,17 +648,13 @@ class OpenPGPScheme(EncryptionScheme):
result = gpg.verify(data)
else:
# to verify using a detached sig we have to use
- # gpg.verify_file(), which receives the name of
- # files containing the date and the signature.
+ # gpg.verify_file(), which receives the data as a binary
+ # stream and the name of a file containing the signature.
sf, sfname = tempfile.mkstemp()
with os.fdopen(sf, 'w') as sfd:
sfd.write(detached_sig)
- df, dfname = tempfile.mkstemp()
- with os.fdopen(df, 'w') as sdd:
- sdd.write(data)
- result = gpg.verify_file(dfname, sig_file=sfname)
+ result = gpg.verify_file(io.BytesIO(data), sig_file=sfname)
os.unlink(sfname)
- os.unlink(dfname)
gpgpubkey = gpg.list_keys().pop()
valid = result.valid
rfprint = result.fingerprint