mte/unikernel/duniverse/ohex
2025-11-11 02:07:51 +01:00
..
CHANGES.md 2025-11-11 02:07:51 +01:00
dune 2025-11-11 02:07:51 +01:00
dune-project 2025-11-11 02:07:51 +01:00
LICENSE.md 2025-11-11 02:07:51 +01:00
ohex.ml 2025-11-11 02:07:51 +01:00
ohex.mli 2025-11-11 02:07:51 +01:00
ohex.opam 2025-11-11 02:07:51 +01:00
README.md 2025-11-11 02:07:51 +01:00
tests.ml 2025-11-11 02:07:51 +01:00

oHEX

This package with minimal dependency cone provides functionality to decode and encode strings into hexadecimal representation.

As example, Ohex.decode "4142" = "AB". And Ohex.encode "AB" = "4142".

There's even the property, for all strings s: Ohex.(decode (encode s)) = s.

A pretty-printer is provided as well.