Skip to content

patricoferris/ocaml-base32

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ocaml-base32

Pure OCaml library for base32 encoding and decoding leaning heavily on the excellent ocaml-base64 (see the LICENSE).

# let enc = Base32.encode_exn "OCaml is great!";;
val enc : string = "J5BWC3LMEBUXGIDHOJSWC5BB"
# let dec = Base32.decode_exn enc;;
val dec : string = "OCaml is great!"

The library is not very well tested so care should be taken if you intend to use it in a production setting.

About

OCaml base32 codec based on OCaml base64

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages