base64version

Base64 encoding for OCaml

Base64 is a group of similar binary-to-text encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation. It is specified in RFC 4648.

See also documentation.

Example

Simple encoding and decoding.

utop # #require "base64";;
utop # let enc = B64.encode "OCaml rocks!";;
val enc : string = "T0NhbWwgcm9ja3Mh"
utop # let plain = B64.decode enc;;
val plain : string = "OCaml rocks!"

License

ISC

AuthorsThomas Gazagnaire, Anil Madhavapeddy and Peter Zotov
LicenseISC
Published
Homepagehttps://github.com/mirage/ocaml-base64
Issue Trackerhttps://github.com/mirage/ocaml-base64/issues
Maintainermirageos-devel@lists.xenproject.org
Dependencies
Source [http] https://github.com/mirage/ocaml-base64/releases/download/v2.2.0/base64-2.2.0.tbz
md5=49f2bc4ae37b832c652277c0b701a02a
Edithttps://github.com/ocaml/opam-repository/tree/master/packages/base64/base64.2.2.0/opam
Required by