version: 1.10

package asn1

import "encoding/asn1"

Overview

Package asn1 implements parsing of DER-encoded ASN.1 data structures, as defined in ITU-T Rec X.690.

See also ``A Layman’s Guide to a Subset of ASN.1, BER, and DER,’’ http://luca.ntop.org/Teaching/Appunti/asn1.html.

Index

Package files

asn1.go common.go marshal.go

Constants

  1. const (
  2. TagBoolean = 1
  3. TagInteger = 2
  4. TagBitString = 3
  5. TagOctetString = 4
  6. TagNull = 5
  7. TagOID = 6
  8. TagEnum = 10
  9. TagUTF8String = 12
  10. TagSequence = 16
  11. TagSet = 17
  12. TagNumericString = 18
  13. TagPrintableString = 19
  14. TagT61String = 20
  15. TagIA5String = 22
  16. TagUTCTime = 23
  17. TagGeneralizedTime = 24
  18. TagGeneralString = 27
  19. )

ASN.1 tags represent the type of the following object.

  1. const (
  2. ClassUniversal = 0
  3. ClassApplication = 1
  4. ClassContextSpecific = 2
  5. ClassPrivate = 3
  6. )

ASN.1 class types represent the namespace of the tag.

Variables

  1. var NullBytes = []byte{TagNull, 0}

NullBytes contains bytes representing the DER-encoded ASN.1 NULL type.

  1. var NullRawValue = RawValue{Tag: TagNull}

NullRawValue is a RawValue with its Tag set to the ASN.1 NULL type tag (5).

func Marshal

  1. func Marshal(val interface{}) ([]byte, error)

Marshal returns the ASN.1 encoding of val.

In addition to the struct tags recognised by Unmarshal, the following can be used:

  1. ia5: causes strings to be marshaled as ASN.1, IA5String values
  2. omitempty: causes empty slices to be skipped
  3. printable: causes strings to be marshaled as ASN.1, PrintableString values
  4. utf8: causes strings to be marshaled as ASN.1, UTF8String values
  5. utc: causes time.Time to be marshaled as ASN.1, UTCTime values
  6. generalized: causes time.Time to be marshaled as ASN.1, GeneralizedTime values

func MarshalWithParams

  1. func MarshalWithParams(val interface{}, params string) ([]byte, error)

MarshalWithParams allows field parameters to be specified for the top-level element. The form of the params is the same as the field tags.

func Unmarshal

  1. func Unmarshal(b []byte, val interface{}) (rest []byte, err error)

Unmarshal parses the DER-encoded ASN.1 data structure b and uses the reflect package to fill in an arbitrary value pointed at by val. Because Unmarshal uses the reflect package, the structs being written to must use upper case field names.

An ASN.1 INTEGER can be written to an int, int32, int64, or *big.Int (from the math/big package). If the encoded value does not fit in the Go type, Unmarshal returns a parse error.

An ASN.1 BIT STRING can be written to a BitString.

An ASN.1 OCTET STRING can be written to a []byte.

An ASN.1 OBJECT IDENTIFIER can be written to an ObjectIdentifier.

An ASN.1 ENUMERATED can be written to an Enumerated.

An ASN.1 UTCTIME or GENERALIZEDTIME can be written to a time.Time.

An ASN.1 PrintableString, IA5String, or NumericString can be written to a string.

Any of the above ASN.1 values can be written to an interface{}. The value stored in the interface has the corresponding Go type. For integers, that type is int64.

An ASN.1 SEQUENCE OF x or SET OF x can be written to a slice if an x can be written to the slice’s element type.

An ASN.1 SEQUENCE or SET can be written to a struct if each of the elements in the sequence can be written to the corresponding element in the struct.

The following tags on struct fields have special meaning to Unmarshal:

  1. application specifies that an APPLICATION tag is used
  2. default:x sets the default value for optional integer fields (only used if optional is also present)
  3. explicit specifies that an additional, explicit tag wraps the implicit one
  4. optional marks the field as ASN.1 OPTIONAL
  5. set causes a SET, rather than a SEQUENCE type to be expected
  6. tag:x specifies the ASN.1 tag number; implies ASN.1 CONTEXT SPECIFIC

If the type of the first field of a structure is RawContent then the raw ASN1 contents of the struct will be stored in it.

If the type name of a slice element ends with “SET” then it’s treated as if the “set” tag was set on it. This can be used with nested slices where a struct tag cannot be given.

Other ASN.1 types are not supported; if it encounters them, Unmarshal returns a parse error.

func UnmarshalWithParams

  1. func UnmarshalWithParams(b []byte, val interface{}, params string) (rest []byte, err error)

UnmarshalWithParams allows field parameters to be specified for the top-level element. The form of the params is the same as the field tags.

type BitString

  1. type BitString struct {
  2. Bytes []byte // bits packed into bytes.
  3. BitLength int // length in bits.
  4. }

BitString is the structure to use when you want an ASN.1 BIT STRING type. A bit string is padded up to the nearest byte in memory and the number of valid bits is recorded. Padding bits will be zero.

func (BitString) At

  1. func (b BitString) At(i int) int

At returns the bit at the given index. If the index is out of range it returns false.

func (BitString) RightAlign

  1. func (b BitString) RightAlign() []byte

RightAlign returns a slice where the padding bits are at the beginning. The slice may share memory with the BitString.

type Enumerated

  1. type Enumerated int

An Enumerated is represented as a plain int.

type Flag

  1. type Flag bool

A Flag accepts any data and is set to true if present.

type ObjectIdentifier

  1. type ObjectIdentifier []int

An ObjectIdentifier represents an ASN.1 OBJECT IDENTIFIER.

func (ObjectIdentifier) Equal

  1. func (oi ObjectIdentifier) Equal(other ObjectIdentifier) bool

Equal reports whether oi and other represent the same identifier.

func (ObjectIdentifier) String

  1. func (oi ObjectIdentifier) String() string

type RawContent

  1. type RawContent []byte

RawContent is used to signal that the undecoded, DER data needs to be preserved for a struct. To use it, the first field of the struct must have this type. It’s an error for any of the other fields to have this type.

type RawValue

  1. type RawValue struct {
  2. Class, Tag int
  3. IsCompound bool
  4. Bytes []byte
  5. FullBytes []byte // includes the tag and length
  6. }

A RawValue represents an undecoded ASN.1 object.

type StructuralError

  1. type StructuralError struct {
  2. Msg string
  3. }

A StructuralError suggests that the ASN.1 data is valid, but the Go type which is receiving it doesn’t match.

func (StructuralError) Error

  1. func (e StructuralError) Error() string

type SyntaxError

  1. type SyntaxError struct {
  2. Msg string
  3. }

A SyntaxError suggests that the ASN.1 data is invalid.

func (SyntaxError) Error

  1. func (e SyntaxError) Error() string