b6449cae87
* `lib_stdlib`: basic extended OCaml stdlib and generic data structures * `lib_data_encoding`: almost independant 'Data_encoding' * `lib_error_monad`: almost independant 'Error_monad' * `lib_stdlib_lwt`: extended Lwt library * `lib_crypto`: all the crypto stuff (hashing, signing, cryptobox). * `lib_base`: - basic type definitions (Block_header, Operation, ...) - a module `TzPervasives` to bind them all and to be the single module opened everywhere. In the process, I splitted `Tezos_data` and `Hash` in multiple submodules, thus removing a lot of `-open`. The following two modules may not have found their place yet: - Base58 (currently in `lib_crypto`) - Cli_entries (currently in `lib_stdlib_lwt`)
50 lines
1.9 KiB
OCaml
50 lines
1.9 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2017. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
(* Tezos Utility library - Hexadecimal encoding *)
|
|
|
|
(* From OCaml's stdlib. See [Digest.to_hex], and [hex_of_bytes], [hex_encode]
|
|
below for examples. *)
|
|
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])
|
|
|
|
(* From OCaml's stdlib. See [Digest.from_hex], and [hex_decode], [bytes_of_hex]
|
|
below for examples. *)
|
|
let gen_decode create set h =
|
|
let n = String.length h in
|
|
if n mod 2 <> 0 then invalid_arg ("hex_decode: " ^ h);
|
|
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
|
|
| _c -> invalid_arg ("hex_decode: " ^ h)
|
|
in
|
|
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
|