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 * WHIRLPOOL 25 * BLAKE2B 26 * BLAKE2S 27 * RIPEMD160 28""" 29 30build: [ "dune" "build" "-p" name "-j" jobs ] 31run-test: [ "dune" "runtest" "-p" name "-j" jobs ] 32 33depends: [ 34 "ocaml" {>= "4.03.0"} 35 "dune" {>= "1.9.2" & < "2.6"} 36 "eqaf" 37 "base-bytes" 38 "bigarray-compat" 39 "stdlib-shims" 40 "fmt" {with-test} 41 "alcotest" {with-test & < "1.0.0"} 42] 43 44depopts: [ 45 "ocaml-freestanding" 46 "mirage-xen-posix" 47] 48 49conflicts: [ 50 "mirage-xen-posix" {< "3.1.0"} 51 "ocaml-freestanding" {< "0.4.3"} 52 "mirage-runtime" {< "4.0.0"} 53] 54url { 55 src: 56 "https://github.com/mirage/digestif/releases/download/v0.8.0/digestif-v0.8.0.tbz" 57 checksum: [ 58 "sha256=9e35599404f1cbbb74beeaefc38e1fbf333e0ca84437b4256527f1889ffde425" 59 "sha512=ce2ebccaae85c15c26781dc7101403e0e09cfe01d76bf9c5e298bd408257c5cc2c06d46481dfe3cfa87ec98e8065874a213960582b4e0e218447c851fc175ec4" 60 ] 61} 62available: [ arch != "s390x" ]