summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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