summaryrefslogtreecommitdiff
path: root/paramiko/dsskey.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/dsskey.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/dsskey.py')
-rw-r--r--paramiko/dsskey.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/paramiko/dsskey.py b/paramiko/dsskey.py
index 9af5d0c1..b3197f62 100644
--- a/paramiko/dsskey.py
+++ b/paramiko/dsskey.py
@@ -49,6 +49,7 @@ class DSSKey(PKey):
self.g = None
self.y = None
self.x = None
+ self.public_blob = None
if file_obj is not None:
self._from_private_key(file_obj, password)
return