encoding/asn1.RawValue.Bytes (field)

10 uses

	encoding/asn1 (current package)
		asn1.go#L515: 	Bytes      []byte
		marshal.go#L618: 		t.tag = bytesEncoder(appendTagAndLength(t.scratch[:0], tagAndLength{rv.Class, rv.Tag, len(rv.Bytes), rv.IsCompound}))
		marshal.go#L619: 		t.body = bytesEncoder(rv.Bytes)

	crypto/x509
		x509.go#L1058: 		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeDNS, Class: 2, Bytes: []byte(name)})
		x509.go#L1064: 		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeEmail, Class: 2, Bytes: []byte(email)})
		x509.go#L1072: 		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeIP, Class: 2, Bytes: ip})
		x509.go#L1079: 		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeURI, Class: 2, Bytes: []byte(uriStr)})
		x509.go#L1150: 				Location: asn1.RawValue{Tag: 6, Class: 2, Bytes: []byte(name)},
		x509.go#L1156: 				Location: asn1.RawValue{Tag: 6, Class: 2, Bytes: []byte(name)},
		x509.go#L1296: 						{Tag: 6, Class: 2, Bytes: []byte(name)},