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

34 uses

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

	crypto/x509
		parser.go#L214: 	ext.Value = val
		parser.go#L425: 	val := cryptobyte.String(e.Value)
		parser.go#L520: 	outer := cryptobyte.String(e.Value)
		parser.go#L672: 				out.KeyUsage, err = parseKeyUsageExtension(e.Value)
		parser.go#L677: 				out.IsCA, out.MaxPathLen, err = parseBasicConstraintsExtension(e.Value)
		parser.go#L684: 				out.DNSNames, out.EmailAddresses, out.IPAddresses, out.URIs, err = parseSANExtension(e.Value)
		parser.go#L713: 				val := cryptobyte.String(e.Value)
		parser.go#L751: 				out.ExtKeyUsage, out.UnknownExtKeyUsage, err = parseExtKeyUsageExtension(e.Value)
		parser.go#L761: 				val := cryptobyte.String(e.Value)
		parser.go#L768: 				out.Policies, err = parseCertificatePoliciesExtension(e.Value)
		parser.go#L788: 			val := cryptobyte.String(e.Value)
		parser.go#L1177: 						val := cryptobyte.String(ext.Value)
		parser.go#L1220: 				value := cryptobyte.String(ext.Value)
		verify.go#L890: 		if bytes.Equal(candidateSAN.Value, certSAN.Value) {
		x509.go#L880: 			return e.Value
		x509.go#L1148: 		ret[n].Value, err = asn1.Marshal(subjectKeyId)
		x509.go#L1157: 		ret[n].Value, err = asn1.Marshal(authKeyId{authorityKeyId})
		x509.go#L1180: 		ret[n].Value, err = asn1.Marshal(aiaValues)
		x509.go#L1194: 		ret[n].Value, err = marshalSANs(template.DNSNames, template.EmailAddresses, template.IPAddresses, template.URIs)
		x509.go#L1302: 		ret[n].Value, err = b.Bytes()
		x509.go#L1325: 		ret[n].Value, err = asn1.Marshal(crlDp)
		x509.go#L1353: 	ext.Value, err = asn1.Marshal(asn1.BitString{Bytes: bitString, BitLength: asn1BitLength(bitString)})
		x509.go#L1372: 	ext.Value, err = asn1.Marshal(oids)
		x509.go#L1385: 	ext.Value, err = asn1.Marshal(basicConstraints{isCA, maxPathLen})
		x509.go#L1417: 	ext.Value, err = b.Bytes()
		x509.go#L1433: 			Value: sanBytes,
		x509.go#L1777: 		aki.Value, err = asn1.Marshal(authKeyId{Id: c.SubjectKeyId})
		x509.go#L2025: 					Value: e.Value,
		x509.go#L2158: 			out.DNSNames, out.EmailAddresses, out.IPAddresses, out.URIs, err = parseSANExtension(extension.Value)
		x509.go#L2379: 					Value: reasonBytes,
		x509.go#L2418: 				Value: aki,
		x509.go#L2422: 				Value: crlNum,