fix ssh server

This commit is contained in:
Alessandro Ogier 2019-08-21 18:10:29 +02:00
parent 71052980d4
commit 08206cb768

View file

@ -490,8 +490,8 @@ def makeFactory(configdict):
try:
# create/get RSA keypair
publicKey, privateKey = getKeyPair(_PUBLIC_KEY_FILE, _PRIVATE_KEY_FILE)
factory.publicKeys = {'ssh-rsa': publicKey}
factory.privateKeys = {'ssh-rsa': privateKey}
factory.publicKeys = {b'ssh-rsa': publicKey}
factory.privateKeys = {b'ssh-rsa': privateKey}
except Exception as err:
print(_NO_AUTOGEN.format(err=err))