this repo has no description
1opam-version: "2.0" 2maintainer: [ "Eyyüb Sari <eyyub.sari@epitech.eu>" 3 "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 4authors: [ "Eyyüb Sari <eyyub.sari@epitech.eu>" 5 "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 6homepage: "https://github.com/mirage/digestif" 7bug-reports: "https://github.com/mirage/digestif/issues" 8dev-repo: "git+https://github.com/mirage/digestif.git" 9doc: "https://mirage.github.io/digestif/" 10license: "MIT" 11synopsis: "Hashes implementations (SHA*, RIPEMD160, BLAKE2* and MD5)" 12description: """ 13Digestif is a toolbox to provide hashes implementations in C and OCaml. 14 15It uses the linking trick and user can decide at the end to use the C implementation or the OCaml implementation. 16 17We provides implementation of: 18 * MD5 19 * SHA1 20 * SHA224 21 * SHA256 22 * SHA384 23 * SHA512 24 * SHA3 25 * WHIRLPOOL 26 * BLAKE2B 27 * BLAKE2S 28 * RIPEMD160 29""" 30 31build: [ 32 [ "dune" "build" "-p" name "-j" jobs ] 33 [ "./install/install.ml" ] 34 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 35] 36install: [ 37 [ "dune" "install" "-p" name ] {with-test} 38 [ "./test/test_runes.ml" ] {with-test} 39] 40 41depends: [ 42 "ocaml" {>= "4.03.0"} 43 "dune" {>= "2.6.0"} 44 "conf-pkg-config" {build} 45 "eqaf" 46 "base-bytes" 47 "bigarray-compat" 48 "stdlib-shims" 49 "fmt" {with-test} 50 "alcotest" {with-test} 51 "bos" {with-test} 52 "astring" {with-test} 53 "fpath" {with-test} 54 "rresult" {with-test} 55 "ocamlfind" {with-test} 56] 57depopts: [ 58 "ocaml-freestanding" 59] 60 61conflicts: [ 62 "mirage-xen" {< "6.0.0"} 63 "ocaml-freestanding" {< "0.6.0"} 64] 65url { 66 src: 67 "https://github.com/mirage/digestif/releases/download/v1.0.1/digestif-v1.0.1.tbz" 68 checksum: [ 69 "sha256=cd7d6e706ce3592fd80c57f241a09f565bd71fecbf730c3611c33a6b3803a2b8" 70 "sha512=3e71393eafa9769bf44adc806121f7e27692f0d9c437032c701d7f11a4abbfb139115e02a4fa863516f9e554b8f69cf28660c720a9c9724b768e3f88e6af2a8a" 71 ] 72} 73x-commit-hash: "60fe6894be50d94932a54c91ad77a435a4565ffd"