encoding/asn1.RawValue.FullBytes (field)
35 uses
encoding/asn1 (current package)
asn1.go#L516: FullBytes []byte // includes the tag and length
marshal.go#L609: if len(rv.FullBytes) != 0 {
marshal.go#L610: return bytesEncoder(rv.FullBytes), nil
crypto/x509
parser.go#L166: ai.Parameters.FullBytes = params
parser.go#L226: if !bytes.Equal(params.FullBytes, asn1.NullBytes) {
parser.go#L254: paramsDer := cryptobyte.String(params.FullBytes)
parser.go#L276: if len(params.FullBytes) != 0 {
parser.go#L286: if len(params.FullBytes) != 0 {
parser.go#L303: paramsDer := cryptobyte.String(params.FullBytes)
pkcs8.go#L55: bytes := privKey.Algo.Parameters.FullBytes
pkcs8.go#L67: if l := len(privKey.Algo.Parameters.FullBytes); l != 0 {
pkcs8.go#L80: if l := len(privKey.Algo.Parameters.FullBytes); l != 0 {
pkcs8.go#L124: FullBytes: oidBytes,
pkcs8.go#L162: FullBytes: oidBytes,
x509.go#L113: publicKeyAlgorithm.Parameters.FullBytes = paramBytes
x509.go#L132: publicKeyAlgorithm.Parameters.FullBytes = paramBytes
x509.go#L398: pssParametersSHA256 = 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#L399: pssParametersSHA384 = 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#L400: pssParametersSHA512 = 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#L419: if len(ai.Parameters.FullBytes) != 0 {
x509.go#L437: if _, err := asn1.Unmarshal(ai.Parameters.FullBytes, ¶ms); err != nil {
x509.go#L442: if _, err := asn1.Unmarshal(params.MGF.Parameters.FullBytes, &mgf1HashFunc); err != nil {
x509.go#L451: if (len(params.Hash.Parameters.FullBytes) != 0 && !bytes.Equal(params.Hash.Parameters.FullBytes, asn1.NullBytes)) ||
x509.go#L454: (len(mgf1HashFunc.Parameters.FullBytes) != 0 && !bytes.Equal(mgf1HashFunc.Parameters.FullBytes, asn1.NullBytes)) ||
x509.go#L1680: Issuer: asn1.RawValue{FullBytes: asn1Issuer},
x509.go#L1682: Subject: asn1.RawValue{FullBytes: asn1Subject},
x509.go#L1891: rest, err := asn1.Unmarshal(rawAttr.FullBytes, &attr)
x509.go#L1914: if rest, err := asn1.Unmarshal(rawAttr.FullBytes, &attr); err != nil || len(rest) != 0 || len(attr.Values) == 0 {
x509.go#L1924: if _, err := asn1.Unmarshal(attr.Values[0].FullBytes, &extensions); err != nil {
x509.go#L2074: Subject: asn1.RawValue{FullBytes: asn1Subject},
x509.go#L2123: RawSubject: in.TBSCSR.Subject.FullBytes,
x509.go#L2143: if rest, err := asn1.Unmarshal(in.TBSCSR.Subject.FullBytes, &subject); err != nil {
x509.go#L2412: Issuer: asn1.RawValue{FullBytes: issuerSubject},
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |