Renci.SshNet.Security.ED25519Key
Contains ED25519 private and public key
namespace Renci.SshNet.Security
{
public class ED25519Key : Key, IDisposable
{
public byte[] PublicKey { get; }
public byte[] PrivateKey { get; }
public ED25519Key();
public ED25519Key(byte[] pk, byte[] sk);
public void Dispose();
protected virtual void Dispose(bool disposing);
}
}