<PackageReference Include="SSH.NET" Version="2024.0.0" />

Renci.SshNet.Security.SshKeyData

public sealed class SshKeyData : SshData
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); } }