mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 21:30:24 +00:00
25 lines
847 B
C#
25 lines
847 B
C#
namespace BinaryObjectScanner.ASN1
|
|
{
|
|
#pragma warning disable IDE0011
|
|
|
|
/// <summary>
|
|
/// Methods related to Object Identifiers (OID) and ASN.1 notation
|
|
/// </summary>
|
|
public static partial class ObjectIdentifier
|
|
{
|
|
/// <summary>
|
|
/// Parse an OID in separated-value notation into ASN.1 notation
|
|
/// </summary>
|
|
/// <param name="values">List of values to check against</param>
|
|
/// <param name="index">Current index into the list</param>
|
|
/// <returns>ASN.1 formatted string, if possible</returns>
|
|
/// <remarks>
|
|
public static string ParseOIDToASN1Notation(ulong[] values, ref int index)
|
|
{
|
|
// TODO: Once the modified OID-IRI formatting is done, make an ASN.1 notation version
|
|
return null;
|
|
}
|
|
}
|
|
|
|
#pragma warning restore IDE0011
|
|
} |