Hello list,
Recently for added security i have tried to run a job with an ssh key generated with the
$ ssh-keygen -t ed25519
command.
Ed25519 is an elliptic curve signature scheme that offers better security than ECDSA and DSA and good performance.
(as taken from the Arch wiki)
Yet to my huge surprise i got this in the debug output:
Execution failed: 9 in project test-project: [Workflow result: , step failures: {1=Dispatch failed on 1 nodes: [my.test.server: SSHProtocolFailure: invalid privatekey: [B@61ae67ca]}, Node failures: {my.test.server=[SSHProtocolFailure: invalid privatekey: [B@61ae67ca]}, status: failed]
Changing to a normal (rsa, 4096bits) key worked just fine.
Will ecdsa and ed25519 be supported in the future?