this repo has no description
1opam-version: "2.0" 2synopsis: "A library of cryptographic primitives" 3description: 4 "Cryptokit includes authenticated encryption (AES-GCM, Chacha20-Poly1305), block ciphers (AES, DES, 3DES), stream ciphers (Chacha20, ARCfour), public-key cryptography (RSA, DH), hashes (SHA-256, SHA-512, SHA-3, Blake2, Blake3), MACs, compression, random number generation -- all presented with a compositional, extensible interface." 5maintainer: ["Xavier Leroy <xavier.leroy@college-de-france.fr>"] 6authors: ["Xavier Leroy"] 7license: "LGPL-2.0-or-later WITH OCaml-LGPL-linking-exception" 8x-maintenance-intent: ["(latest)"] 9homepage: "https://github.com/xavierleroy/cryptokit" 10bug-reports: "https://github.com/xavierleroy/cryptokit/issues" 11depends: [ 12 "ocaml" {>= "4.08.0"} 13 "dune" {>= "2.5"} 14 "dune-configurator" 15 "zarith" {>= "1.4"} 16 "conf-zlib" 17 "conf-gmp-powm-sec" 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test} 30 "@doc" {with-doc} 31 ] 32] 33dev-repo: "git+https://github.com/xavierleroy/cryptokit.git" 34url { 35 src: "https://github.com/xavierleroy/cryptokit/archive/release1201.tar.gz" 36 checksum: [ 37 "sha256=b933c32b4e03e7236add969c2f583df241aeff8eabd2cabb1f345a78250fcea6" 38 "sha512=7b1e2ba8b99b11a04522ffe4b6b92278bc772d9888967757ab013151211fc85d29847af566677f2b9c3200e45b857600a70356ca6ed80ca299508808057358b1" 39 ] 40}