encoding/asn1.RawValue.FullBytes (field)
35 uses
encoding/asn1 (current package)
asn1.go#L516: 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#L165: ai.Parameters.FullBytes = params
parser.go#L225: if !bytes.Equal(params.FullBytes, asn1.NullBytes) {
parser.go#L253: paramsDer := cryptobyte.String(params.FullBytes)
parser.go#L275: if len(params.FullBytes) != 0 {
parser.go#L285: if len(params.FullBytes) != 0 {
parser.go#L302: 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#L389: 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#L390: 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#L391: 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#L410: if len(ai.Parameters.FullBytes) != 0 {
x509.go#L428: if _, err := asn1.Unmarshal(ai.Parameters.FullBytes, ¶ms); err != nil {
x509.go#L433: if _, err := asn1.Unmarshal(params.MGF.Parameters.FullBytes, &mgf1HashFunc); err != nil {
x509.go#L442: if (len(params.Hash.Parameters.FullBytes) != 0 && !bytes.Equal(params.Hash.Parameters.FullBytes, asn1.NullBytes)) ||
x509.go#L445: (len(mgf1HashFunc.Parameters.FullBytes) != 0 && !bytes.Equal(mgf1HashFunc.Parameters.FullBytes, asn1.NullBytes)) ||
x509.go#L1619: Issuer: asn1.RawValue{FullBytes: asn1Issuer},
x509.go#L1621: Subject: asn1.RawValue{FullBytes: asn1Subject},
x509.go#L1863: rest, err := asn1.Unmarshal(rawAttr.FullBytes, &attr)
x509.go#L1886: if rest, err := asn1.Unmarshal(rawAttr.FullBytes, &attr); err != nil || len(rest) != 0 || len(attr.Values) == 0 {
x509.go#L1896: if _, err := asn1.Unmarshal(attr.Values[0].FullBytes, &extensions); err != nil {
x509.go#L2048: Subject: asn1.RawValue{FullBytes: asn1Subject},
x509.go#L2108: RawSubject: in.TBSCSR.Subject.FullBytes,
x509.go#L2128: if rest, err := asn1.Unmarshal(in.TBSCSR.Subject.FullBytes, &subject); err != nil {
x509.go#L2397: Issuer: asn1.RawValue{FullBytes: issuerSubject},
|
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |