package core_extended

  1. Overview
  2. Docs
Extra components that are not as closely vetted or as stable as Core

Install

Dune Dependency

Authors

Maintainers

Sources

core_extended-v0.12.0.tar.gz
sha256=7409a8e075b3d494fe00f75755d20a2d8cf1f4d40298060e1b9b791c4fd89695
md5=04aab340ce7972e99f81cf3066759453

doc/core_extended.base64/Base64/index.html

Module Base64

Simple library for encoding and decoding base64 strings

module type T = sig ... end
include T
val encode : string -> string
val decode : string -> string * [ `Unconsumed_data of string ] option

The decoded string along with any unconsumed data

val decode_exn : string -> string

Raises if decode has any unconsumed data

module Websafe : T

Web/file safe encoding, replacing '+' and '/' with '-' and '_' respectively. There is no padding when encoding. See Table 2 in RFC4648 (http://www.ietf.org/rfc/rfc4648.txt) for the full character set

module Make (D : sig ... end) : T

Create other Base64 derivatives

OCaml

Innovation. Community. Security.