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

ObjectIdentifier

public struct ObjectIdentifier
Describes object identifier for DER encoding
using System; namespace Renci.SshNet.Common { public struct ObjectIdentifier { public ulong[] Identifiers { get; set; } public ObjectIdentifier(params ulong[] identifiers) { this = default(ObjectIdentifier); if (identifiers.Length < 2) throw new ArgumentException("identifiers"); Identifiers = identifiers; } } }