Go stdlib package — encoding/base32. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.
.CorruptInputError.Error()NeutralCorruptInputError.Error() string
CorruptInputError.Error function.
.Encoding.Decode()NeutralEncoding.Decode(dst []byte, src []byte) (int, error)
Decode decodes src using the encoding enc. It writes at most
.Encoding.DecodeString()NeutralEncoding.DecodeString(s string) ([]byte, error)
DecodeString returns the bytes represented by the base32 string s.
.Encoding.DecodedLen()NeutralEncoding.DecodedLen(n int) int
DecodedLen returns the maximum length in bytes of the decoded data
.Encoding.Encode()NeutralEncoding.Encode(dst []byte, src []byte)
Encode encodes src using the encoding enc, writing
.Encoding.EncodeToString()NeutralEncoding.EncodeToString(src []byte) string
EncodeToString returns the base32 encoding of src.
.Encoding.EncodedLen()NeutralEncoding.EncodedLen(n int) int
EncodedLen returns the length in bytes of the base32 encoding
.Encoding.WithPadding()NeutralEncoding.WithPadding(padding rune) *Encoding
WithPadding creates a new encoding identical to enc except
.NewDecoder()NeutralNewDecoder(enc *Encoding, r io.Reader) io.Reader
NewDecoder constructs a new base32 stream decoder.
.NewEncoder()NeutralNewEncoder(enc *Encoding, w io.Writer) io.WriteCloser
NewEncoder returns a new base32 stream encoder. Data written to
| FQN | Field | |
|---|---|---|
| encoding/base32 | fqns[0] |
Wrong FQN → 0 findings. Verify with: change fqns to garbage → must produce 0 results.
// standard library — no go.mod entry required
from codepathfinder.go_rule import ... # encoding/base32