Skip to content

patricoferris/ocaml-multibase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ocaml-multibase

A library providing self-identifying base encodings as per the multibase. Take the following encoded string. Not only can be decode it without specifying a base-encoding scheme, we also get that scheme back.

let encoded = "T9T1M2RBC41KN6837E9IM2T11"

The Base.decode function will return either the encoding scheme along with the decoded string, or an error.

# Multibase.decode encoded;;
- : (Multibase.Encoding.t * string,
     [ `Msg of string | `Unsupported of Multibase.Encoding.t ])
    result
= Ok (`Base32hexpadupper, "OCaml is great!")

So this string was encoded using Base32 with the extended hexadecimal alphabet in upper-case. We can just as easily put it back the way it was.

# let encoded_ = Multibase.encode `Base32hexpadupper "OCaml is great!";;
val encoded_ :
  (string, [ `Msg of string | `Unsupported of Multibase.Encoding.t ]) result =
  Ok "T9T1M2RBC41KN6837E9IM2T11"
# String.equal encoded (Result.get_ok encoded_);;
- : bool = true

Note that the main encode function will let you specify all possible encodings as per the specification. However, encode_t narrows this to the support encodings of this library, hence it won't return `` Unsupported.

# let encoded_ = Multibase.encode_t `Base32hexpadupper "OCaml is great!";;
val encoded_ : (string, [ `Msg of string ]) result =
  Ok "T9T1M2RBC41KN6837E9IM2T11"

About

Self-identifying base encodings for OCaml

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages