encoding/asn1.RawValue.FullBytes (field)
30 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
parser.go#L163: ai.Parameters.FullBytes = params
parser.go#L245: if !bytes.Equal(keyData.Algorithm.Parameters.FullBytes, asn1.NullBytes) {
parser.go#L273: paramsDer := cryptobyte.String(keyData.Algorithm.Parameters.FullBytes)
parser.go#L295: if len(keyData.Algorithm.Parameters.FullBytes) != 0 {
parser.go#L315: paramsDer := cryptobyte.String(keyData.Algorithm.Parameters.FullBytes)
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#L98: publicKeyAlgorithm.Parameters.FullBytes = paramBytes
x509.go#L362: 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#L363: 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#L364: 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#L383: if len(ai.Parameters.FullBytes) != 0 {
x509.go#L401: if _, err := asn1.Unmarshal(ai.Parameters.FullBytes, ¶ms); err != nil {
x509.go#L406: if _, err := asn1.Unmarshal(params.MGF.Parameters.FullBytes, &mgf1HashFunc); err != nil {
x509.go#L415: if (len(params.Hash.Parameters.FullBytes) != 0 && !bytes.Equal(params.Hash.Parameters.FullBytes, asn1.NullBytes)) ||
x509.go#L418: (len(mgf1HashFunc.Parameters.FullBytes) != 0 && !bytes.Equal(mgf1HashFunc.Parameters.FullBytes, asn1.NullBytes)) ||
x509.go#L1555: Issuer: asn1.RawValue{FullBytes: asn1Issuer},
x509.go#L1557: Subject: asn1.RawValue{FullBytes: asn1Subject},
x509.go#L1803: rest, err := asn1.Unmarshal(rawAttr.FullBytes, &attr)
x509.go#L1825: if rest, err := asn1.Unmarshal(rawAttr.FullBytes, &attr); err != nil || len(rest) != 0 || len(attr.Values) == 0 {
x509.go#L1835: if _, err := asn1.Unmarshal(attr.Values[0].FullBytes, &extensions); err != nil {
x509.go#L1980: Subject: asn1.RawValue{FullBytes: asn1Subject},
x509.go#L2040: RawSubject: in.TBSCSR.Subject.FullBytes,
x509.go#L2058: if rest, err := asn1.Unmarshal(in.TBSCSR.Subject.FullBytes, &subject); err != nil {