type golang.org/x/crypto/cryptobyte/asn1.Tag

42 uses

	golang.org/x/crypto/cryptobyte/asn1 (current package)
		asn1.go#L15: type Tag uint8
		asn1.go#L23: func (t Tag) Constructed() Tag { return t | classConstructed }
		asn1.go#L26: func (t Tag) ContextSpecific() Tag { return t | classContextSpecific }
		asn1.go#L30: 	BOOLEAN           = Tag(1)
		asn1.go#L31: 	INTEGER           = Tag(2)
		asn1.go#L32: 	BIT_STRING        = Tag(3)
		asn1.go#L33: 	OCTET_STRING      = Tag(4)
		asn1.go#L34: 	NULL              = Tag(5)
		asn1.go#L35: 	OBJECT_IDENTIFIER = Tag(6)
		asn1.go#L36: 	ENUM              = Tag(10)
		asn1.go#L37: 	UTF8String        = Tag(12)
		asn1.go#L38: 	SEQUENCE          = Tag(16 | classConstructed)
		asn1.go#L39: 	SET               = Tag(17 | classConstructed)
		asn1.go#L40: 	PrintableString   = Tag(19)
		asn1.go#L41: 	T61String         = Tag(20)
		asn1.go#L42: 	IA5String         = Tag(22)
		asn1.go#L43: 	UTCTime           = Tag(23)
		asn1.go#L44: 	GeneralizedTime   = Tag(24)
		asn1.go#L45: 	GeneralString     = Tag(27)

	golang.org/x/crypto/cryptobyte
		asn1.go#L28: func (b *Builder) AddASN1Int64WithTag(v int64, tag asn1.Tag) {
		asn1.go#L37: func (b *Builder) addASN1Signed(tag asn1.Tag, v int64) {
		asn1.go#L230: func (b *Builder) AddASN1(tag asn1.Tag, f BuilderContinuation) {
		asn1.go#L401: func (s *String) ReadASN1Int64WithTag(out *int64, tag asn1.Tag) bool {
		asn1.go#L590: func (s *String) ReadASN1Bytes(out *[]byte, tag asn1.Tag) bool {
		asn1.go#L599: func (s *String) ReadASN1(out *String, tag asn1.Tag) bool {
		asn1.go#L600: 	var t asn1.Tag
		asn1.go#L612: func (s *String) ReadASN1Element(out *String, tag asn1.Tag) bool {
		asn1.go#L613: 	var t asn1.Tag
		asn1.go#L625: func (s *String) ReadAnyASN1(out *String, outTag *asn1.Tag) bool {
		asn1.go#L634: func (s *String) ReadAnyASN1Element(out *String, outTag *asn1.Tag) bool {
		asn1.go#L640: func (s String) PeekASN1Tag(tag asn1.Tag) bool {
		asn1.go#L644: 	return asn1.Tag(s[0]) == tag
		asn1.go#L649: func (s *String) SkipASN1(tag asn1.Tag) bool {
		asn1.go#L658: func (s *String) ReadOptionalASN1(out *String, outPresent *bool, tag asn1.Tag) bool {
		asn1.go#L671: func (s *String) SkipOptionalASN1(tag asn1.Tag) bool {
		asn1.go#L683: func (s *String) ReadOptionalASN1Integer(out interface{}, tag asn1.Tag, defaultValue interface{}) bool {
		asn1.go#L715: func (s *String) ReadOptionalASN1OctetString(out *[]byte, outPresent *bool, tag asn1.Tag) bool {
		asn1.go#L740: func (s *String) ReadOptionalASN1Boolean(out *bool, tag asn1.Tag, defaultValue bool) bool {
		asn1.go#L755: func (s *String) readASN1(out *String, outTag *asn1.Tag, skipHeader bool) bool {
		asn1.go#L771: 		*outTag = asn1.Tag(tag)