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

35 uses

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

	crypto/x509
		parser.go#L213: 	ext.Value = val
		parser.go#L499: 	outer := cryptobyte.String(e.Value)
		parser.go#L651: 				out.KeyUsage, err = parseKeyUsageExtension(e.Value)
		parser.go#L656: 				out.IsCA, out.MaxPathLen, err = parseBasicConstraintsExtension(e.Value)
		parser.go#L663: 				out.DNSNames, out.EmailAddresses, out.IPAddresses, out.URIs, err = parseSANExtension(e.Value)
		parser.go#L692: 				val := cryptobyte.String(e.Value)
		parser.go#L726: 				val := cryptobyte.String(e.Value)
		parser.go#L738: 				out.ExtKeyUsage, out.UnknownExtKeyUsage, err = parseExtKeyUsageExtension(e.Value)
		parser.go#L744: 				val := cryptobyte.String(e.Value)
		parser.go#L751: 				out.PolicyIdentifiers, err = parseCertificatePoliciesExtension(e.Value)
		parser.go#L761: 			val := cryptobyte.String(e.Value)
		parser.go#L1142: 						val := cryptobyte.String(ext.Value)
		parser.go#L1180: 				rl.AuthorityKeyId = ext.Value
		parser.go#L1182: 				value := cryptobyte.String(ext.Value)
		verify.go#L882: 		if bytes.Equal(candidateSAN.Value, certSAN.Value) {
		x509.go#L862: 			return e.Value
		x509.go#L1127: 		ret[n].Value, err = asn1.Marshal(subjectKeyId)
		x509.go#L1136: 		ret[n].Value, err = asn1.Marshal(authKeyId{authorityKeyId})
		x509.go#L1159: 		ret[n].Value, err = asn1.Marshal(aiaValues)
		x509.go#L1173: 		ret[n].Value, err = marshalSANs(template.DNSNames, template.EmailAddresses, template.IPAddresses, template.URIs)
		x509.go#L1280: 		ret[n].Value, err = b.Bytes()
		x509.go#L1303: 		ret[n].Value, err = asn1.Marshal(crlDp)
		x509.go#L1331: 	ext.Value, err = asn1.Marshal(asn1.BitString{Bytes: bitString, BitLength: asn1BitLength(bitString)})
		x509.go#L1350: 	ext.Value, err = asn1.Marshal(oids)
		x509.go#L1363: 	ext.Value, err = asn1.Marshal(basicConstraints{isCA, maxPathLen})
		x509.go#L1374: 	ext.Value, err = asn1.Marshal(policies)
		x509.go#L1390: 			Value: sanBytes,
		x509.go#L1742: 		aki.Value, err = asn1.Marshal(authKeyId{Id: c.SubjectKeyId})
		x509.go#L1999: 					Value: e.Value,
		x509.go#L2143: 			out.DNSNames, out.EmailAddresses, out.IPAddresses, out.URIs, err = parseSANExtension(extension.Value)
		x509.go#L2364: 					Value: reasonBytes,
		x509.go#L2403: 				Value: aki,
		x509.go#L2407: 				Value: crlNum,