summaryrefslogtreecommitdiff
path: root/lib/thandy/formats.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/thandy/formats.py')
-rw-r--r--lib/thandy/formats.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/thandy/formats.py b/lib/thandy/formats.py
index 8a27a65..cf9ff1f 100644
--- a/lib/thandy/formats.py
+++ b/lib/thandy/formats.py
@@ -790,6 +790,9 @@ def makeKeylistObj(keylist_fname, includePrivate=False):
klist = []
for k in keys:
k = thandy.keys.RSAKey.fromJSon(k)
+ if includePrivate and not k.isPrivateKey():
+ raise thandy.FormatException("Private key information not found.")
+
klist.append({'key': k.format(private=includePrivate), 'roles' : k.getRoles() })
result = { '_type' : "Keylist",