this repo has no description
1opam-version: "2.0"
2maintainer: "Nathan Rebours <nathan@cryptosense.com>"
3homepage: "https://github.com/cryptosense/key-parsers"
4bug-reports: "https://github.com/cryptosense/key-parsers/issues"
5license: "BSD-2-Clause"
6dev-repo: "git+https://github.com/cryptosense/key-parsers.git"
7doc: "https://cryptosense.github.io/key-parsers/doc"
8build: [
9 [ "dune" "build" "-p" name "-j" jobs ]
10]
11run-test: [
12 [ "dune" "runtest" "-p" name "-j" jobs ]
13]
14depends: [
15 "asn1-combinators" {>= "0.2.0" & < "0.3.0"}
16 "cstruct" {>= "1.6.0" & < "6.0.0"}
17 "dune"
18 "hex" {>= "1.0.0"}
19 "ocaml" {>= "4.04.1"}
20 "ounit" {with-test & >= "2.0.0"}
21 "ppx_bin_prot" {< "v0.16.0"}
22 "ppx_deriving" {>= "4.2"}
23 "ppx_deriving_yojson" {>= "3.2"}
24 "result" {>= "1.2"}
25 "zarith" {>= "1.4.1"}
26]
27conflicts: [
28 "ppx_driver" {= "v0.9.1"}
29 "yojson" {>= "2.0.0"}
30]
31synopsis: "Parsers for multiple key formats"
32description: """
33This library provides parsers for several encodings of RSA, DSA, Diffie-Hellman or
34Elliptic curve public and private keys.
35"""
36authors: "Nathan Rebours <nathan@cryptosense.com>"
37url {
38 src:
39 "https://github.com/cryptosense/key-parsers/releases/download/0.10.1/key-parsers-0.10.1.tbz"
40 checksum: [
41 "sha256=2b4ec7c6c5427a00c8f169392dba83b1458348ec718418997e9fe7f68b324cb1"
42 "md5=a662b863973cef70f4c95e581853eef2"
43 ]
44}