this repo has no description
1opam-version: "2.0" 2maintainer: [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 3authors: [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 4homepage: "https://github.com/mirage/eqaf" 5bug-reports: "https://github.com/mirage/eqaf/issues" 6dev-repo: "git+https://github.com/mirage/eqaf.git" 7doc: "https://mirage.github.io/eqaf/" 8license: "MIT" 9synopsis: "Constant-time equal function on string" 10description: """ 11This package provides an equal function on string in constant-time to avoid timing-attack with crypto stuff. 12""" 13 14build: [ 15 [ "dune" "subst" ] {dev} 16 [ "dune" "build" "-p" name "-j" jobs ] 17] 18 19depends: [ 20 "ocaml" {>= "4.03.0"} 21 "dune" 22 "alcotest" {with-test} 23 "crowbar" {with-test} 24] 25 26depopts: [ 27 "cstruct" 28 "bigarray-compat" 29] 30 31conflicts: [ 32 "cstruct" {< "4.0.0"} 33] 34 35url { 36 src: "https://github.com/mirage/eqaf/releases/download/v0.6/eqaf-v0.6.tbz" 37 checksum: [ 38 "sha256=09ebddd1789828354eb84253b679c6ca1be9a44e0b7fac2ebef52015c3101919" 39 "sha512=8c3dd3dbd53eb7ebd4b42e67b9798c407408a93e20b40d92a590b87674b095f70cef5b273cd0d8c7371dc946f0fbf47043b62eb51186648912bc499a162c6417" 40 ] 41}