projects
/
edward.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0aa88c2
)
return fingerprints not sig objects
author
Andrew Engelbrecht
<sudoman@ninthfloor.org>
Wed, 22 Jul 2015 21:17:41 +0000
(17:17 -0400)
committer
Andrew Engelbrecht
<sudoman@ninthfloor.org>
Mon, 7 Dec 2015 18:28:39 +0000
(13:28 -0500)
edward
patch
|
blob
|
blame
|
history
diff --git
a/edward
b/edward
index 9a781850919a0f984d00923cb0d645e1006c3804..24fced5ecbdf88ed3aacf36ae344eb01fd1c8410 100755
(executable)
--- a/
edward
+++ b/
edward
@@
-481,7
+481,11
@@
def decrypt_block (msg_block, gpgme_ctx):
return ("",[])
plaintext = plain_b.getvalue().decode('utf-8')
- return (plaintext, sigs)
+
+ fingerprints = []
+ for sig in sigs:
+ fingerprints += [sig.fpr]
+ return (plaintext, fingerprints)
def choose_reply_encryption_key (gpgme_ctx, fingerprints):