aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/examples/howto/local-sign-group.py
diff options
context:
space:
mode:
Diffstat (limited to 'lang/python/examples/howto/local-sign-group.py')
-rwxr-xr-xlang/python/examples/howto/local-sign-group.py24
1 files changed, 22 insertions, 2 deletions
diff --git a/lang/python/examples/howto/local-sign-group.py b/lang/python/examples/howto/local-sign-group.py
index 812042dd..0353646d 100755
--- a/lang/python/examples/howto/local-sign-group.py
+++ b/lang/python/examples/howto/local-sign-group.py
@@ -115,12 +115,32 @@ for i in range(len(lines)):
defkey_fpr = dline.split(":")[-1].replace('"', '').split(',')[0].upper()
enckey_fpr = eline.split(":")[-1].replace('"', '').split(',')[0].upper()
+try:
+ dkey = c.keylist(pattern=defkey_fpr, secret=True)
+ dk = list(dkey)
+except Exception as de:
+ print(de)
+ dk = None
+ print("No valid default key.")
+
+try:
+ ekey = c.keylist(pattern=defkey_fpr, secret=True)
+ ek = list(ekey)
+except Exception as ee:
+ print(ee)
+ ek = None
+ print("No valid always encrypt to key.")
+
if sigkey is not None:
- mykey = c.keylist(pattern=sigkey)
+ mykey = c.keylist(pattern=sigkey, secret=True)
mk = list(mykey)
mkfpr = mk[0].fpr.upper()
+ c.signers = mk
else:
- pass
+ if dk is None and ek is not None:
+ c.signers = ek
+ else:
+ pass
for group in group_lists:
if group[0] == clique: