encoding/asn1.RawValue.Bytes (field)
10 uses
encoding/asn1 (current package)
asn1.go#L507: Bytes []byte
marshal.go#L615: t.tag = bytesEncoder(appendTagAndLength(t.scratch[:0], tagAndLength{rv.Class, rv.Tag, len(rv.Bytes), rv.IsCompound}))
marshal.go#L616: t.body = bytesEncoder(rv.Bytes)
crypto/x509
x509.go#L1143: rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeDNS, Class: 2, Bytes: []byte(name)})
x509.go#L1149: rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeEmail, Class: 2, Bytes: []byte(email)})
x509.go#L1157: rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeIP, Class: 2, Bytes: ip})
x509.go#L1164: rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeURI, Class: 2, Bytes: []byte(uriStr)})
x509.go#L1237: Location: asn1.RawValue{Tag: 6, Class: 2, Bytes: []byte(name)},
x509.go#L1243: Location: asn1.RawValue{Tag: 6, Class: 2, Bytes: []byte(name)},
x509.go#L1384: {Tag: 6, Class: 2, Bytes: []byte(name)},