diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-03-18 08:06:53 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-03-18 08:06:53 -0400 |
commit | fe2d1cd163aca811e966a0143a7d6759f90f996b (patch) | |
tree | 0b8c977e18e8c4710b8f897d742f759b71a100dc | |
parent | 95f712b82bc5c54ae682ada69696944077aa5377 (diff) |
No password here
-rw-r--r-- | paramiko/rsakey.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/rsakey.py b/paramiko/rsakey.py index 624ce2ef..43f9fd9b 100644 --- a/paramiko/rsakey.py +++ b/paramiko/rsakey.py @@ -162,7 +162,7 @@ class RSAKey(PKey): def _decode_key(self, data): key = serialization.load_der_private_key( - data, password="", backend=default_backend() + data, password=None, backend=default_backend() ) assert isinstance(key, rsa.RSAPrivateKey) self.key = key |