Object Identifier Value Specification

ASN.1 values of type OCTET STRING are mapped to Go variables of type []uint64.

ASN.1 production:

   <name> OBJECT IDENTIFIER ::= <value>

Generated code:

   var Asn1v<name> []uint64 = []uint64{<arcs}>;

Where <arcs> is a comma-separated list of the OID integer arc values.

For example, consider the following declaration:

oid OBJECT IDENTIFIER ::= { ccitt b(5) 10 }

This would result in the following definition in the Go source file:

   var Asn1vOid []uint64 = []uint64{ 0, 5, 10 }
   }