package digestif

  1. Overview
  2. Docs
Hashes implementations (SHA*, RIPEMD160, BLAKE2* and MD5)

Install

Dune Dependency

Authors

Maintainers

Sources

digestif-v1.0.1.tbz
sha256=cd7d6e706ce3592fd80c57f241a09f565bd71fecbf730c3611c33a6b3803a2b8
sha512=3e71393eafa9769bf44adc806121f7e27692f0d9c437032c701d7f11a4abbfb139115e02a4fa863516f9e554b8f69cf28660c720a9c9724b768e3f88e6af2a8a

Description

Digestif is a toolbox to provide hashes implementations in C and OCaml.

It uses the linking trick and user can decide at the end to use the C implementation or the OCaml implementation.

We provides implementation of:

  • MD5
  • SHA1
  • SHA224
  • SHA256
  • SHA384
  • SHA512
  • SHA3
  • WHIRLPOOL
  • BLAKE2B
  • BLAKE2S
  • RIPEMD160

Published: 02 Aug 2021

README

Digestif - Hash algorithms in C and OCaml

Digestif is a toolbox which implements hashes:

  • MD5

  • SHA1

  • SHA2

  • SHA3

  • WHIRLPOOL

  • BLAKE2B

  • BLAKE2S

  • RIPEMD160

Digestif uses a trick about linking and let the end-user to choose which implementation he wants to use. We provide 2 implementations:

  • C implementation with digestif.c

  • OCaml implementation with digestif.ocaml

Both are well-tested. However, OCaml implementation is slower than the C implementation.

Note: The linking trick requires digestif.c or digestif.ocaml to be the first of your dependencies.

Home page: http://blog.x25519.net/

Contact: Romain Calascibetta <romain.calascibet ta@gmail.com>

API

For each hash, we implement the same API which is referentially transparent. Then, on the top of these, we reflect functions (like digesti or hmaci) with GADT - however, conversion from GADT to hash type is not possible (but you can destruct GADT with to_raw_string).

Equal/Compare function

We deciced to protect users to timing-attack. In this case, Digestif.equal (by eqaf package) compares hashes in constant-time.

However, we provide unsafe_compare function too which is not a constant time function. In some contexts, like ocaml-git, we don't care about timing attack and we use unsafe_compare - then, we need to make a wrap where we rename unsafe_compare to compare to be able to use it in some functors like Map.Make or Set.Make.

It's little annoying to do that but it forces the user to get the right question about security issues. So, please, don't ask to rename this function.

MirageOS

Of course, this package is available to be used on MirageOS (both implementations). User is able to compile digestif.ocaml with js_of_ocaml and this package is platform agnostic.

Build Requirements

  • OCaml >= 4.03.0 (may be less but need test)

  • base-bytes meta-package

  • base-bigarray meta-package

  • dune to build the project

If you want to compile the test program, you need:

  • alcotest

Credits

This work is from the nocrypto library and the Vincent hanquez's work in ocaml-sha.

All credits appear in the begin of files and this library is motivated by two reasons:

  • delete the dependancy with nocrypto if you don't use the encryption (and common) part

  • aggregate all hashes functions in one library

Dev Dependencies (7)

  1. ocamlfind with-test
  2. rresult with-test
  3. fpath with-test
  4. astring with-test
  5. bos with-test
  6. alcotest with-test
  7. fmt with-test

Used by (46)

  1. archetype < "1.2.2"
  2. aws >= "1.2"
  3. aws-s3 >= "4.2.0"
  4. carton < "0.4.4"
  5. carton-lwt < "0.4.4"
  6. chamelon
  7. dkim
  8. dkim-mirage >= "0.2.0"
  9. docfd >= "2.1.0"
  10. docteur
  11. docteur-solo5
  12. docteur-unix
  13. dream < "1.0.0~alpha3"
  14. dream-httpaf
  15. esperanto-cosmopolitan >= "0.0.5"
  16. git >= "3.0.0" & < "3.9.1"
  17. git-unix >= "3.0.0" & < "3.9.1"
  18. graphql-cohttp >= "0.9.0"
  19. index-bench >= "1.5.0"
  20. irmin >= "2.0.0"
  21. irmin-cli
  22. irmin-git >= "2.0.0"
  23. irmin-http = "2.0.0" | >= "2.3.0"
  24. irmin-tezos
  25. irmin-unix >= "2.0.0"
  26. jupyter-kernel >= "0.4"
  27. jwto >= "0.4.0"
  28. learn-ocaml >= "0.12"
  29. learn-ocaml-client
  30. miou
  31. naboris >= "0.1.3"
  32. nocoiner
  33. noise >= "0.2.0"
  34. ocluster
  35. ocluster-worker
  36. ometrics >= "0.1.2"
  37. soupault >= "4.4.0"
  38. spoke
  39. swhid
  40. swhid_compute
  41. tezos-base58
  42. tezos-context < "11.0" | >= "12.0" & < "16.0"
  43. tezos-context-hash
  44. tezos-storage
  45. tezos-store < "12.0"
  46. zeit

Conflicts (2)

  1. ocaml-freestanding < "0.6.0"
  2. mirage-xen < "6.0.0"