package batteries
Install
dune-project
Dependency
Authors
Maintainers
Sources
md5=096be9e83e347b4c7b5b6e5b2af22992
sha512=621dca842c4a7adf0ac1e907bf44c1405e0b66a088987a138a4f4e98ca744815913bf87fd780619151cb049a07d7fdb1e8adb7b65698ab46b8c2dfe46cd7119d
doc/batteries.unthreaded/BatBase64/index.html
Module BatBase64Source
Base64 codec.
8-bit characters are encoded into 6-bit ones using ASCII lookup tables. Default tables maps 0..63 values on characters A-Z, a-z, 0-9, '+' and '/' (in that order).
@documents Base64
This exception is raised when reading an invalid character from a base64 input.
This exception is raised if the encoding or decoding table size is not correct.
An encoding table maps integers 0..63 to the corresponding char.
A decoding table maps chars 0..255 to the corresponding 0..63 value or -1 if the char is not accepted.
Encode a string into Base64.
Decode a string encoded into Base64, raise Invalid_char if a character in the input string is not a valid one.
Generic base64 encoding over an output.
Generic base64 decoding over an input.
Create a valid decoding table from an encoding one.