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;
}
}
}