Module Base64.Config_rfc4648_url_relaxed

include module type of struct include Config_rfc4648_url end
val c62 : char

the 62nd character. '+' in rfc4648, '-' in rfc4648_url.

val c63 : char

the 63rd character. '/' in rfc4648, '_' in rfc4648_url.

val pad : char option

the pad character. if None, padding is disabled.

Some '=' in rfc4648. None in rfc4648_url.

val validate_padding : bool

if set to true, validate padding length on decoding.

val ignore_unknown : bool

if set to true, unknown characters are ignored on decoding.

ignore_unknown = true implies ignore_newline = true.

val ignore_newline : bool