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

37 uses

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

	crypto/x509
		parser.go#L245: 	ext.Value = val
		parser.go#L449: 	val := cryptobyte.String(e.Value)
		parser.go#L549: 	outer := cryptobyte.String(e.Value)
		parser.go#L680: 				out.KeyUsage, err = parseKeyUsageExtension(e.Value)
		parser.go#L685: 				out.IsCA, out.MaxPathLen, err = parseBasicConstraintsExtension(e.Value)
		parser.go#L692: 				out.DNSNames, out.EmailAddresses, out.IPAddresses, out.URIs, err = parseSANExtension(e.Value)
		parser.go#L721: 				val := cryptobyte.String(e.Value)
		parser.go#L759: 				val := cryptobyte.String(e.Value)
		parser.go#L788: 				out.ExtKeyUsage, out.UnknownExtKeyUsage, err = parseExtKeyUsageExtension(e.Value)
		parser.go#L797: 				val := cryptobyte.String(e.Value)
		parser.go#L804: 				out.Policies, err = parseCertificatePoliciesExtension(e.Value)
		parser.go#L815: 				val := cryptobyte.String(e.Value)
		parser.go#L830: 				val := cryptobyte.String(e.Value)
		parser.go#L845: 			val := cryptobyte.String(e.Value)
		parser.go#L1234: 						val := cryptobyte.String(ext.Value)
		parser.go#L1277: 				value := cryptobyte.String(ext.Value)
		verify.go#L710: 		if bytes.Equal(candidateSAN.Value, certSAN.Value) {
		x509.go#L968: 			return e.Value
		x509.go#L1231: 		ret[n].Value, err = asn1.Marshal(subjectKeyId)
		x509.go#L1240: 		ret[n].Value, err = asn1.Marshal(authKeyId{authorityKeyId})
		x509.go#L1263: 		ret[n].Value, err = asn1.Marshal(aiaValues)
		x509.go#L1277: 		ret[n].Value, err = marshalSANs(template.DNSNames, template.EmailAddresses, template.IPAddresses, template.URIs)
		x509.go#L1385: 		ret[n].Value, err = b.Bytes()
		x509.go#L1408: 		ret[n].Value, err = asn1.Marshal(crlDp)
		x509.go#L1436: 	ext.Value, err = asn1.Marshal(asn1.BitString{Bytes: bitString, BitLength: asn1BitLength(bitString)})
		x509.go#L1455: 	ext.Value, err = asn1.Marshal(oids)
		x509.go#L1468: 	ext.Value, err = asn1.Marshal(basicConstraints{isCA, maxPathLen})
		x509.go#L1500: 	ext.Value, err = b.Bytes()
		x509.go#L1516: 			Value: sanBytes,
		x509.go#L1886: 		aki.Value, err = asn1.Marshal(authKeyId{Id: c.SubjectKeyId})
		x509.go#L2134: 					Value: e.Value,
		x509.go#L2267: 			out.DNSNames, out.EmailAddresses, out.IPAddresses, out.URIs, err = parseSANExtension(extension.Value)
		x509.go#L2489: 					Value: reasonBytes,
		x509.go#L2528: 				Value: aki,
		x509.go#L2532: 				Value: crlNum,