Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2010-03-09 23:34:59 (GMT)
committer Sayamindu Dasgupta <sayamindu@gmail.com>2010-03-22 12:56:27 (GMT)
commitcfcaf4743d1c3eb52a37d5ce4322efd16986f10f (patch)
tree3266b432a1879e38933232d7c35afd4394ef3f95 /src
parent94b399e2fde7da7f96c0f0eeda3e7c80094e731c (diff)
check syntax of private key (#1568)
Check that header and footer of the private key are present in order to detect corrupted key files. Signed-off-by: Sascha Silbe <sascha-pgp@silbe.org>
Diffstat (limited to 'src')
-rw-r--r--src/sugar/profile.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/sugar/profile.py b/src/sugar/profile.py
index d5012bd..df9237e 100644
--- a/src/sugar/profile.py
+++ b/src/sugar/profile.py
@@ -97,14 +97,18 @@ class Profile(object):
return None
key = ""
+ begin_found = False
+ end_found = False
for l in lines:
l = l.strip()
if l.startswith("-----BEGIN DSA PRIVATE KEY-----"):
+ begin_found = True
continue
if l.startswith("-----END DSA PRIVATE KEY-----"):
+ end_found = True
continue
key += l
- if not len(key):
+ if not (len(key) and begin_found and end_found):
logging.error("Error parsing public key.")
return None