encoding/asn1.RawValue.FullBytes (field)

33 uses

	encoding/asn1 (current package)
		asn1.go#L513: 	FullBytes  []byte // includes the tag and length
		marshal.go#L612: 		if len(rv.FullBytes) != 0 {
		marshal.go#L613: 			return bytesEncoder(rv.FullBytes), nil

	crypto/x509
		pkcs8.go#L53: 		bytes := privKey.Algo.Parameters.FullBytes
		pkcs8.go#L65: 		if l := len(privKey.Algo.Parameters.FullBytes); l != 0 {
		pkcs8.go#L113: 				FullBytes: oidBytes,
		x509.go#L99: 		publicKeyAlgorithm.Parameters.FullBytes = paramBytes
		x509.go#L363: 	crypto.SHA256: asn1.RawValue{FullBytes: []byte{48, 52, 160, 15, 48, 13, 6, 9, 96, 134, 72, 1, 101, 3, 4, 2, 1, 5, 0, 161, 28, 48, 26, 6, 9, 42, 134, 72, 134, 247, 13, 1, 1, 8, 48, 13, 6, 9, 96, 134, 72, 1, 101, 3, 4, 2, 1, 5, 0, 162, 3, 2, 1, 32}},
		x509.go#L364: 	crypto.SHA384: asn1.RawValue{FullBytes: []byte{48, 52, 160, 15, 48, 13, 6, 9, 96, 134, 72, 1, 101, 3, 4, 2, 2, 5, 0, 161, 28, 48, 26, 6, 9, 42, 134, 72, 134, 247, 13, 1, 1, 8, 48, 13, 6, 9, 96, 134, 72, 1, 101, 3, 4, 2, 2, 5, 0, 162, 3, 2, 1, 48}},
		x509.go#L365: 	crypto.SHA512: asn1.RawValue{FullBytes: []byte{48, 52, 160, 15, 48, 13, 6, 9, 96, 134, 72, 1, 101, 3, 4, 2, 3, 5, 0, 161, 28, 48, 26, 6, 9, 42, 134, 72, 134, 247, 13, 1, 1, 8, 48, 13, 6, 9, 96, 134, 72, 1, 101, 3, 4, 2, 3, 5, 0, 162, 3, 2, 1, 64}},
		x509.go#L384: 		if len(ai.Parameters.FullBytes) != 0 {
		x509.go#L402: 	if _, err := asn1.Unmarshal(ai.Parameters.FullBytes, ¶ms); err != nil {
		x509.go#L407: 	if _, err := asn1.Unmarshal(params.MGF.Parameters.FullBytes, &mgf1HashFunc); err != nil {
		x509.go#L416: 	if (len(params.Hash.Parameters.FullBytes) != 0 && !bytes.Equal(params.Hash.Parameters.FullBytes, asn1.NullBytes)) ||
		x509.go#L419: 		(len(mgf1HashFunc.Parameters.FullBytes) != 0 && !bytes.Equal(mgf1HashFunc.Parameters.FullBytes, asn1.NullBytes)) ||
		x509.go#L923: 		if !bytes.Equal(keyData.Algorithm.Parameters.FullBytes, asn1.NullBytes) {
		x509.go#L957: 		paramsData := keyData.Algorithm.Parameters.FullBytes
		x509.go#L979: 		paramsData := keyData.Algorithm.Parameters.FullBytes
		x509.go#L1005: 		if len(keyData.Algorithm.Parameters.FullBytes) != 0 {
		x509.go#L1298: 	out.RawSubject = in.TBSCertificate.Subject.FullBytes
		x509.go#L1299: 	out.RawIssuer = in.TBSCertificate.Issuer.FullBytes
		x509.go#L1317: 	if rest, err := asn1.Unmarshal(in.TBSCertificate.Subject.FullBytes, &subject); err != nil {
		x509.go#L1322: 	if rest, err := asn1.Unmarshal(in.TBSCertificate.Issuer.FullBytes, &issuer); err != nil {
		x509.go#L2199: 		Issuer:             asn1.RawValue{FullBytes: asn1Issuer},
		x509.go#L2201: 		Subject:            asn1.RawValue{FullBytes: asn1Subject},
		x509.go#L2444: 		rest, err := asn1.Unmarshal(rawAttr.FullBytes, &attr)
		x509.go#L2466: 		if rest, err := asn1.Unmarshal(rawAttr.FullBytes, &attr); err != nil || len(rest) != 0 || len(attr.Values) == 0 {
		x509.go#L2476: 		if _, err := asn1.Unmarshal(attr.Values[0].FullBytes, &extensions); err != nil {
		x509.go#L2621: 		Subject: asn1.RawValue{FullBytes: asn1Subject},
		x509.go#L2681: 		RawSubject:               in.TBSCSR.Subject.FullBytes,
		x509.go#L2699: 	if rest, err := asn1.Unmarshal(in.TBSCSR.Subject.FullBytes, &subject); err != nil {