10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-01 02:45:29 +02:00
quantum_package/ocaml/To_md5.ml

12 lines
219 B
OCaml
Raw Normal View History

2017-08-18 19:43:52 +02:00
open Qptypes
open Sexplib
2014-10-27 22:00:36 +01:00
let to_md5 sexp_of_t t =
sexp_of_t t
|> Sexp.to_string
|> Cryptokit.hash_string (Cryptokit.Hash.md5 ())
|> Cryptokit.transform_string (Cryptokit.Hexa.encode ())
|> MD5.of_string
;;