Source File
asn1.go
Belonging Package
vendor/golang.org/x/crypto/cryptobyte/asn1
package asn1 // import "golang.org/x/crypto/cryptobyte/asn1"
type Tag uint8
const (
classConstructed = 0x20
classContextSpecific = 0x80
)
func ( Tag) () Tag { return | classConstructed }
func ( Tag) () Tag { return | classContextSpecific }
const (
BOOLEAN = Tag(1)
INTEGER = Tag(2)
BIT_STRING = Tag(3)
OCTET_STRING = Tag(4)
NULL = Tag(5)
OBJECT_IDENTIFIER = Tag(6)
ENUM = Tag(10)
UTF8String = Tag(12)
SEQUENCE = Tag(16 | classConstructed)
SET = Tag(17 | classConstructed)
PrintableString = Tag(19)
T61String = Tag(20)
IA5String = Tag(22)
UTCTime = Tag(23)
GeneralizedTime = Tag(24)
GeneralString = Tag(27)
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |