ocaml / ocaml.org

The official OCaml website.
https://ocaml.org
Other
149 stars 302 forks source link

Cookbook Encode and Decode Bytestrings from Hex-Strings #2445

Open ggsmith842 opened 2 months ago

ggsmith842 commented 2 months ago

I have added two functions for the task Encode and Decode Bytestrings from Hex-Strings

  1. decode_hex_string to convert a hexidecimal string to an ascii string.
  2. encode_to_hex to convert an ascii string to hexidecimal.

Both functions leverage the Hex library.