this repo has no description
1opam-version: "2.0" 2maintainer: "Hannes Mehnert <hannes@mehnert.org>" 3authors: "Hannes Mehnert <hannes@mehnert.org>" 4license: "BSD-2-Clause" 5homepage: "https://github.com/hannesm/ocaml-otr" 6doc: "https://hannesm.github.io/ocaml-otr/doc" 7bug-reports: "https://github.com/hannesm/ocaml-otr/issues" 8depends: [ 9 "ocaml" {>= "4.07.0"} 10 "dune" 11 "cstruct" {>= "1.9.0"} 12 "sexplib0" 13 "mirage-crypto" {< "1.0.0"} 14 "mirage-crypto-pk" {< "0.10.4"} 15 "astring" 16 "rresult" 17 "base64" {>= "3.0.0"} 18 "mirage-crypto-rng" {with-test & < "1.0.0"} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 ["dune" "build" "-p" name "-j" jobs] 23 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 24] 25dev-repo: "git+https://github.com/hannesm/ocaml-otr.git" 26synopsis: "Off the record implementation purely in OCaml" 27description: """ 28This is an implementation of version 2 and 3 of the Off-the-record 29protocol (https://otr.cypherpunks.ca/Protocol-v3-4.0.0.html) in OCaml. 30 31Including the socialist millionairs protocol to authenticate a 32communication partner over an encrypted channel providing a shared 33secret. 34""" 35url { 36 src: 37 "https://github.com/hannesm/ocaml-otr/releases/download/v0.3.8/otr-v0.3.8.tbz" 38 checksum: [ 39 "sha256=6d2434ee8394922197de3146ce2c409d0567c6b517062705a416dbcf114d16a2" 40 "sha512=3e9885fba19e1b7316bccb7c9f4ec92d94104ab706458b9ca6f1c989eadbbd472da60c8a57b7cd2f7855a3bb08b0271772666cc0d4927516f27892ead145b6f3" 41 ] 42}