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

29 uses

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

	crypto/x509
		parser.go#L235: 	ext.Value = val
		parser.go#L512: 	outer := cryptobyte.String(e.Value)
		parser.go#L664: 				out.KeyUsage, err = parseKeyUsageExtension(e.Value)
		parser.go#L669: 				out.IsCA, out.MaxPathLen, err = parseBasicConstraintsExtension(e.Value)
		parser.go#L676: 				out.DNSNames, out.EmailAddresses, out.IPAddresses, out.URIs, err = parseSANExtension(e.Value)
		parser.go#L705: 				val := cryptobyte.String(e.Value)
		parser.go#L739: 				val := cryptobyte.String(e.Value)
		parser.go#L751: 				out.ExtKeyUsage, out.UnknownExtKeyUsage, err = parseExtKeyUsageExtension(e.Value)
		parser.go#L757: 				val := cryptobyte.String(e.Value)
		parser.go#L764: 				out.PolicyIdentifiers, err = parseCertificatePoliciesExtension(e.Value)
		parser.go#L774: 			val := cryptobyte.String(e.Value)
		x509.go#L811: 			return e.Value
		x509.go#L1067: 		ret[n].Value, err = asn1.Marshal(subjectKeyId)
		x509.go#L1076: 		ret[n].Value, err = asn1.Marshal(authKeyId{authorityKeyId})
		x509.go#L1099: 		ret[n].Value, err = asn1.Marshal(aiaValues)
		x509.go#L1113: 		ret[n].Value, err = marshalSANs(template.DNSNames, template.EmailAddresses, template.IPAddresses, template.URIs)
		x509.go#L1220: 		ret[n].Value, err = b.Bytes()
		x509.go#L1243: 		ret[n].Value, err = asn1.Marshal(crlDp)
		x509.go#L1271: 	ext.Value, err = asn1.Marshal(asn1.BitString{Bytes: bitString, BitLength: asn1BitLength(bitString)})
		x509.go#L1293: 	ext.Value, err = asn1.Marshal(oids)
		x509.go#L1309: 	ext.Value, err = asn1.Marshal(basicConstraints{isCA, maxPathLen})
		x509.go#L1323: 	ext.Value, err = asn1.Marshal(policies)
		x509.go#L1342: 			Value: sanBytes,
		x509.go#L1682: 		aki.Value, err = asn1.Marshal(authKeyId{Id: c.SubjectKeyId})
		x509.go#L1931: 					Value: e.Value,
		x509.go#L2073: 			out.DNSNames, out.EmailAddresses, out.IPAddresses, out.URIs, err = parseSANExtension(extension.Value)
		x509.go#L2179: 				Value: aki,
		x509.go#L2183: 				Value: crlNum,