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

37 uses

	crypto/x509/pkix (current package)
		pkix.go#L116: 	Value    []byte

	crypto/x509
		parser.go#L246: 	ext.Value = val
		parser.go#L457: 	val := cryptobyte.String(e.Value)
		parser.go#L557: 	outer := cryptobyte.String(e.Value)
		parser.go#L688: 				out.KeyUsage, err = parseKeyUsageExtension(e.Value)
		parser.go#L693: 				out.IsCA, out.MaxPathLen, err = parseBasicConstraintsExtension(e.Value)
		parser.go#L700: 				out.DNSNames, out.EmailAddresses, out.IPAddresses, out.URIs, err = parseSANExtension(e.Value)
		parser.go#L729: 				val := cryptobyte.String(e.Value)
		parser.go#L767: 				val := cryptobyte.String(e.Value)
		parser.go#L796: 				out.ExtKeyUsage, out.UnknownExtKeyUsage, err = parseExtKeyUsageExtension(e.Value)
		parser.go#L805: 				val := cryptobyte.String(e.Value)
		parser.go#L812: 				out.Policies, err = parseCertificatePoliciesExtension(e.Value)
		parser.go#L823: 				val := cryptobyte.String(e.Value)
		parser.go#L838: 				val := cryptobyte.String(e.Value)
		parser.go#L853: 			val := cryptobyte.String(e.Value)
		parser.go#L1242: 						val := cryptobyte.String(ext.Value)
		parser.go#L1285: 				value := cryptobyte.String(ext.Value)
		verify.go#L989: 		if bytes.Equal(candidateSAN.Value, certSAN.Value) {
		x509.go#L951: 			return e.Value
		x509.go#L1214: 		ret[n].Value, err = asn1.Marshal(subjectKeyId)
		x509.go#L1223: 		ret[n].Value, err = asn1.Marshal(authKeyId{authorityKeyId})
		x509.go#L1246: 		ret[n].Value, err = asn1.Marshal(aiaValues)
		x509.go#L1260: 		ret[n].Value, err = marshalSANs(template.DNSNames, template.EmailAddresses, template.IPAddresses, template.URIs)
		x509.go#L1368: 		ret[n].Value, err = b.Bytes()
		x509.go#L1391: 		ret[n].Value, err = asn1.Marshal(crlDp)
		x509.go#L1419: 	ext.Value, err = asn1.Marshal(asn1.BitString{Bytes: bitString, BitLength: asn1BitLength(bitString)})
		x509.go#L1438: 	ext.Value, err = asn1.Marshal(oids)
		x509.go#L1451: 	ext.Value, err = asn1.Marshal(basicConstraints{isCA, maxPathLen})
		x509.go#L1483: 	ext.Value, err = b.Bytes()
		x509.go#L1499: 			Value: sanBytes,
		x509.go#L1869: 		aki.Value, err = asn1.Marshal(authKeyId{Id: c.SubjectKeyId})
		x509.go#L2117: 					Value: e.Value,
		x509.go#L2250: 			out.DNSNames, out.EmailAddresses, out.IPAddresses, out.URIs, err = parseSANExtension(extension.Value)
		x509.go#L2472: 					Value: reasonBytes,
		x509.go#L2511: 				Value: aki,
		x509.go#L2515: 				Value: crlNum,