Base64
Applies to: cybersecurity, python, general
Base64 encodes bytes as printable ASCII text. It is encoding, not encryption.
base64.b64encode(b"hi")
See also: hex, serialization
Applies to: cybersecurity, python, general
Base64 encodes bytes as printable ASCII text. It is encoding, not encryption.
base64.b64encode(b"hi")
See also: hex, serialization