summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-09-22 13:10:21 -0700
committerJeff Forcier <jeff@bitprophet.org>2017-09-22 13:10:21 -0700
commitd2c3b166242a5958240d4c79a4913fe2ef681cb7 (patch)
treed1208c166229445b15d00fce5e079b258faeda79
parent11ea8a6d0dad54058928fb2e50fbf7a3cf3f66ff (diff)
downloadparamiko-d2c3b166242a5958240d4c79a4913fe2ef681cb7.tar.gz
Initialize public_blob in Ed25519 key.
Was removed earlier (because the 'initialization' of first impl was at END of method and thus broke main impl of cert loading) but neglected to add back to TOP of __init__, so broken anytime there is no cert in play. Fixes #1071
-rw-r--r--paramiko/ed25519key.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/paramiko/ed25519key.py b/paramiko/ed25519key.py
index 434b3f45..418a822d 100644
--- a/paramiko/ed25519key.py
+++ b/paramiko/ed25519key.py
@@ -57,6 +57,7 @@ class Ed25519Key(PKey):
"""
def __init__(self, msg=None, data=None, filename=None, password=None,
file_obj=None):
+ self.public_blob = None
verifying_key = signing_key = None
if msg is None and data is not None:
msg = Message(data)