summaryrefslogtreecommitdiff
path: root/paramiko/ed25519key.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-05-26 21:32:28 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2017-06-03 02:02:46 -0400
commit38ed8b62e0955501043f1e4fba6b14d1424a5ccd (patch)
treeb74f5f6a503947c16f7e8f7d628d41a7d47bb1a9 /paramiko/ed25519key.py
parent419d6182d3a6986291df8a7c9b7ecc213d19209c (diff)
downloadparamiko-38ed8b62e0955501043f1e4fba6b14d1424a5ccd.tar.gz
these are bytes
Diffstat (limited to 'paramiko/ed25519key.py')
-rw-r--r--paramiko/ed25519key.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/ed25519key.py b/paramiko/ed25519key.py
index d336457b..21c69305 100644
--- a/paramiko/ed25519key.py
+++ b/paramiko/ed25519key.py
@@ -28,7 +28,7 @@ from paramiko.pkey import PKey
from paramiko.ssh_exception import SSHException, PasswordRequiredException
-OPENSSH_AUTH_MAGIC = "openssh-key-v1\x00"
+OPENSSH_AUTH_MAGIC = b"openssh-key-v1\x00"
def unpad(data):
# At the moment, this is only used for unpadding private keys on disk, and