This module implements a base64 encoder and decoder.
Unstable API.
Base64 is an encoding and decoding technique used to convert binary data to an ASCII string format. Each Base64 digit represents exactly 6 bits of data. Three 8-bit bytes (i.e., a total of 24 bits) can therefore be represented by four 6-bit Base64 digits.
Example:
import std/base64
let encoded = encode("Hello World")
assert encoded == "SGVsbG8gV29ybGQ="Apart from strings you can also encode lists of integers or characters: Example:
import std/base64 let encodedInts = encode([1'u8,2,3]) assert encodedInts == "AQID" let encodedChars = encode(['h','e','y']) assert encodedChars == "aGV5"
Example:
import std/base64
let decoded = decode("SGVsbG8gV29ybGQ=")
assert decoded == "Hello World" Example:
import std/base64
assert encode("c\xf7>", safe = true) == "Y_c-"
assert encode("c\xf7>", safe = false) == "Y/c+" proc decode(s: string): string {....raises: [ValueError], tags: [], forbids: [].}Decodes string s in base64 representation back into its original form. The initial whitespace is skipped.
See also:
Example:
assert decode("SGVsbG8gV29ybGQ=") == "Hello World"
assert decode(" SGVsbG8gV29ybGQ=") == "Hello World" Source Edit proc encode[T: byte | char](s: openArray[T]; safe = false): string
Encodes s into base64 representation.
If safe is true then it will encode using the URL-Safe and Filesystem-safe standard alphabet characters, which substitutes - instead of + and _ instead of /.
See also:
Example:
assert encode("Hello World") == "SGVsbG8gV29ybGQ="
assert encode(['n', 'i', 'm']) == "bmlt"
assert encode(@['n', 'i', 'm']) == "bmlt"
assert encode([1'u8, 2, 3, 4, 5]) == "AQIDBAU=" Source Edit proc encodeMime(s: string; lineLen = 75.Positive; newLine = "\r\n"; safe = false): string {.
...raises: [], tags: [], forbids: [].}Encodes s into base64 representation as lines. Used in email MIME format, use lineLen and newline.
This procedure encodes a string according to MIME spec.
If safe is true then it will encode using the URL-Safe and Filesystem-safe standard alphabet characters, which substitutes - instead of + and _ instead of /.
See also:
Example:
assert encodeMime("Hello World", 4, "\n") == "SGVs\nbG8g\nV29y\nbGQ=" Source Edit
© 2006–2024 Andreas Rumpf
Licensed under the MIT License.
https://nim-lang.org/docs/base64.html