I/O & Encoding

PyBase64

Python stdlib module — base64. Auto-indexed from CDN. Method-level security roles have not been annotated; rule writers should inspect the source before use.

Other Methods

.a85decode()Neutral
#
Signature
a85decode(b, foldspaces, adobe, ignorechars)

Decode the Ascii85 encoded bytes-like object or ASCII string b.

.a85encode()Neutral
#
Signature
a85encode(b, foldspaces, wrapcol, pad, adobe)

Encode bytes-like object b using Ascii85 and return a bytes object.

.b16decode()Neutral
#
Signature
b16decode(s, casefold)

Decode the Base16 encoded bytes-like object or ASCII string s.

.b16encode()Neutral
#
Signature
b16encode(s)

Encode the bytes-like object s using Base16 and return a bytes object.

.b32decode()Neutral
#
Signature
b32decode(s, casefold, map01)

Decode the base32 encoded bytes-like object or ASCII string s.

.b32encode()Neutral
#
Signature
b32encode(s)

Encode the bytes-like objects using base32 and return a bytes object.

.b32hexdecode()Neutral
#
Signature
b32hexdecode(s, casefold)

Decode the base32hex encoded bytes-like object or ASCII string s.

.b32hexencode()Neutral
#
Signature
b32hexencode(s)

Encode the bytes-like objects using base32hex and return a bytes object.

.b64decode()Neutral
#
Signature
b64decode(s, altchars, validate)

Decode the Base64 encoded bytes-like object or ASCII string s.

.b64encode()Neutral
#
Signature
b64encode(s, altchars)

Encode the bytes-like object s using Base64 and return a bytes object.

Fully-Qualified Names

FQNField
base64fqns[0]

Wrong FQN → 0 findings. Verify with: change fqns to garbage → must produce 0 results.

Import

rule.py
import base64