Renci.SshNet.Security.SshKeyData
Facilitates (de)serializing encoded public key data in the format
specified by RFC 4253 section 6.6.
namespace Renci.SshNet.Security
{
public sealed class SshKeyData : SshData
{
public string Name { get; }
public BigInteger[] Keys { get; }
public SshKeyData(byte[] data);
public SshKeyData(string name, BigInteger[] keys);
}
}