type encoding/asn1.RawValue

38 uses

	encoding/asn1 (current package)
		asn1.go#L214: var NullRawValue = RawValue{Tag: TagNull}
		asn1.go#L509: type RawValue struct {
		asn1.go#L661: 	rawValueType         = reflect.TypeOf(RawValue{})
		asn1.go#L855: 	case *RawValue:
		asn1.go#L856: 		*v = RawValue{t.class, t.tag, t.isCompound, innerBytes, bytes[initOffset:offset]}
		marshal.go#L611: 		rv := v.Interface().(RawValue)

	crypto/x509
		pkcs8.go#L112: 			Parameters: asn1.RawValue{
		x509.go#L153: 	Issuer             asn1.RawValue
		x509.go#L155: 	Subject            asn1.RawValue
		x509.go#L362: var hashToPSSParameters = map[crypto.Hash]asn1.RawValue{
		x509.go#L363: 	crypto.SHA256: asn1.RawValue{FullBytes: []byte{48, 52, 160, 15, 48, 13, 6, 9, 96, 134, 72, 1, 101, 3, 4, 2, 1, 5, 0, 161, 28, 48, 26, 6, 9, 42, 134, 72, 134, 247, 13, 1, 1, 8, 48, 13, 6, 9, 96, 134, 72, 1, 101, 3, 4, 2, 1, 5, 0, 162, 3, 2, 1, 32}},
		x509.go#L364: 	crypto.SHA384: asn1.RawValue{FullBytes: []byte{48, 52, 160, 15, 48, 13, 6, 9, 96, 134, 72, 1, 101, 3, 4, 2, 2, 5, 0, 161, 28, 48, 26, 6, 9, 42, 134, 72, 134, 247, 13, 1, 1, 8, 48, 13, 6, 9, 96, 134, 72, 1, 101, 3, 4, 2, 2, 5, 0, 162, 3, 2, 1, 48}},
		x509.go#L365: 	crypto.SHA512: asn1.RawValue{FullBytes: []byte{48, 52, 160, 15, 48, 13, 6, 9, 96, 134, 72, 1, 101, 3, 4, 2, 3, 5, 0, 161, 28, 48, 26, 6, 9, 42, 134, 72, 134, 247, 13, 1, 1, 8, 48, 13, 6, 9, 96, 134, 72, 1, 101, 3, 4, 2, 3, 5, 0, 162, 3, 2, 1, 64}},
		x509.go#L902: 	Location asn1.RawValue
		x509.go#L909: 	CRLIssuer         asn1.RawValue         `asn1:"optional,tag:2"`
		x509.go#L913: 	FullName     []asn1.RawValue  `asn1:"optional,tag:0"`
		x509.go#L1036: 	var seq asn1.RawValue
		x509.go#L1049: 		var v asn1.RawValue
		x509.go#L1647: 	var rawValues []asn1.RawValue
		x509.go#L1652: 		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeDNS, Class: 2, Bytes: []byte(name)})
		x509.go#L1658: 		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeEmail, Class: 2, Bytes: []byte(email)})
		x509.go#L1666: 		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeIP, Class: 2, Bytes: ip})
		x509.go#L1673: 		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeURI, Class: 2, Bytes: []byte(uriStr)})
		x509.go#L1744: 				Location: asn1.RawValue{Tag: 6, Class: 2, Bytes: []byte(name)},
		x509.go#L1750: 				Location: asn1.RawValue{Tag: 6, Class: 2, Bytes: []byte(name)},
		x509.go#L1889: 					FullName: []asn1.RawValue{
		x509.go#L2199: 		Issuer:             asn1.RawValue{FullBytes: asn1Issuer},
		x509.go#L2201: 		Subject:            asn1.RawValue{FullBytes: asn1Subject},
		x509.go#L2405: 	Subject       asn1.RawValue
		x509.go#L2407: 	RawAttributes []asn1.RawValue `asn1:"tag:0"`
		x509.go#L2423: func newRawAttributes(attributes []pkix.AttributeTypeAndValueSET) ([]asn1.RawValue, error) {
		x509.go#L2424: 	var rawAttributes []asn1.RawValue
		x509.go#L2440: func parseRawAttributes(rawAttributes []asn1.RawValue) []pkix.AttributeTypeAndValueSET {
		x509.go#L2456: func parseCSRExtensions(rawAttributes []asn1.RawValue) ([]pkix.Extension, error) {
		x509.go#L2460: 		Values []asn1.RawValue `asn1:"set"`
		x509.go#L2603: 		var rawValue asn1.RawValue
		x509.go#L2621: 		Subject: asn1.RawValue{FullBytes: asn1Subject},

	crypto/x509/pkix
		pkix.go#L21: 	Parameters asn1.RawValue `asn1:"optional"`