crypto/x509/pkix.AttributeTypeAndValueSET.Value (field)

9 uses

	crypto/x509/pkix (current package)
		pkix.go#L108: 	Value [][]AttributeTypeAndValue `asn1:"set"`

	crypto/x509
		x509.go#L1985: 		values := make([][]pkix.AttributeTypeAndValue, len(attr.Value))
		x509.go#L1986: 		copy(values, attr.Value)
		x509.go#L1989: 			Value: values,
		x509.go#L1997: 			if !atvSet.Type.Equal(oidExtensionRequest) || len(atvSet.Value) == 0 {
		x509.go#L2005: 			for _, atvs := range atvSet.Value {
		x509.go#L2011: 			newValue := make([]pkix.AttributeTypeAndValue, 0, len(atvSet.Value[0])+len(extensions))
		x509.go#L2012: 			newValue = append(newValue, atvSet.Value[0]...)
		x509.go#L2029: 			atvSet.Value[0] = newValue