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.13.0"} 10 "dune" {>= "1.0.0"} 11 "sexplib0" 12 "mirage-crypto" {>= "1.0.0"} 13 "mirage-crypto-pk" {>= "1.0.0"} 14 "mirage-crypto-rng" {>= "1.0.0"} 15 "digestif" {>= "1.2.0"} 16 "astring" 17 "base64" {>= "3.1.0"} 18] 19conflicts: [ "result" {< "1.5"} ] 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/v1.0.0/otr-1.0.0.tbz" 38 checksum: [ 39 "sha256=fc2715a8b6ddca507e2eaa4a3444e4a6f43c4840087041423b5319aaf7662565" 40 "sha512=14319d717232113a17a21a28fda3a2ef9363daff70012252cae0013a65d7d682fb5bcaea7f84180e7d2761d29661c7035ec87a49a9a9d172dc99a015d38d1cab" 41 ] 42} 43x-commit-hash: "6ece6e9640aa96746cbd471e84a3153b7c34e23f" 44x-maintenance-intent: [ "(latest)" ]