summaryrefslogtreecommitdiff
path: root/paramiko/ed25519key.py
diff options
context:
space:
mode:
authorPaul Kapp <paullkapp+radssh@gmail.com>2017-08-22 06:31:47 -0400
committerPaul Kapp <paullkapp+radssh@gmail.com>2017-08-22 06:31:47 -0400
commit7229597ce0925ee8dafe97544f42dcc193fbad8f (patch)
treed0578884ddc4d79aad3699298600dd5fd8d0fd83 /paramiko/ed25519key.py
parent08f503740182608570ac87661225fe2e11914d8f (diff)
downloadparamiko-7229597ce0925ee8dafe97544f42dcc193fbad8f.tar.gz
Generic certificate support
Roll agnostic certificate support into PKey, and tweak publickey authentication to use it only if set. Requires explicit call to PKey.load_certificate() in order to alter the authentication behavior.
Diffstat (limited to 'paramiko/ed25519key.py')
-rw-r--r--paramiko/ed25519key.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/paramiko/ed25519key.py b/paramiko/ed25519key.py
index a50d68bc..d904f1ac 100644
--- a/paramiko/ed25519key.py
+++ b/paramiko/ed25519key.py
@@ -63,6 +63,7 @@ class Ed25519Key(PKey):
self._signing_key = signing_key
self._verifying_key = verifying_key
+ self.public_blob = None
def _parse_signing_key_data(self, data, password):
from paramiko.transport import Transport