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] 65x-commit-hash: "f7e043938d9bb6fda9865086074e60929095cd9e" 66url { 67 src: 68 "https://github.com/mirage/digestif/releases/download/v1.0.0/digestif-v1.0.0.tbz" 69 checksum: [ 70 "sha256=29450c1fecb93b3c5c19588f8abcbf4891ddf1f84a1bbd3fb860e96994472884" 71 "sha512=30f4e2ea85a0aa50dbafb7c52d55b49f5612fbeeaa4ed8bfbd1610848a8f397c4cd1589fe0bd7ab3f165974697151279d56c37bae44c7f29a2d5a514af9d4942" 72 ] 73} 74available: [ arch != "s390x" ]