2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2017-11-14 03:36:14 +04:00
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
2016-09-08 21:13:10 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
(* Tezos Utility library - Hexadecimal encoding *)
|
|
|
|
|
2017-08-20 08:07:07 +04:00
|
|
|
(* From OCaml's stdlib. See [Digest.to_hex], and [hex_of_bytes], [hex_encode]
|
|
|
|
below for examples. *)
|
2016-09-08 21:13:10 +04:00
|
|
|
let gen_encode length get s =
|
|
|
|
let n = length s in
|
|
|
|
let result = Bytes.create (n*2) in
|
|
|
|
for i = 0 to n-1 do
|
|
|
|
Bytes.blit_string (Printf.sprintf "%02x" (get s i)) 0 result (2*i) 2;
|
|
|
|
done;
|
|
|
|
Bytes.unsafe_to_string result
|
|
|
|
|
|
|
|
let hex_of_bytes = gen_encode MBytes.length MBytes.get_uint8
|
|
|
|
let hex_encode = gen_encode String.length (fun s i -> int_of_char s.[i])
|
|
|
|
|
2017-08-20 08:07:07 +04:00
|
|
|
(* From OCaml's stdlib. See [Digest.from_hex], and [hex_decode], [bytes_of_hex]
|
|
|
|
below for examples. *)
|
2016-09-08 21:13:10 +04:00
|
|
|
let gen_decode create set h =
|
|
|
|
let n = String.length h in
|
2016-10-21 16:01:01 +04:00
|
|
|
if n mod 2 <> 0 then invalid_arg ("hex_decode: " ^ h);
|
2016-09-08 21:13:10 +04:00
|
|
|
let digit c =
|
|
|
|
match c with
|
|
|
|
| '0'..'9' -> int_of_char c - int_of_char '0'
|
|
|
|
| 'A'..'F' -> int_of_char c - int_of_char 'A' + 10
|
|
|
|
| 'a'..'f' -> int_of_char c - int_of_char 'a' + 10
|
2016-10-21 16:01:01 +04:00
|
|
|
| _c -> invalid_arg ("hex_decode: " ^ h)
|
|
|
|
in
|
2016-09-08 21:13:10 +04:00
|
|
|
let byte i = digit h.[i] lsl 4 + digit h.[i+1] in
|
|
|
|
let result = create (n / 2) in
|
|
|
|
for i = 0 to n/2 - 1 do
|
|
|
|
set result i (byte (2 * i));
|
|
|
|
done;
|
|
|
|
result
|
|
|
|
|
|
|
|
let hex_decode s =
|
|
|
|
gen_decode Bytes.create (fun s i c -> Bytes.set s i (char_of_int c)) s |>
|
|
|
|
Bytes.unsafe_to_string
|
|
|
|
|
|
|
|
let bytes_of_hex s =
|
|
|
|
gen_decode MBytes.create MBytes.set_int8 s
|