this repo has no description
1opam-version: "2.0"
2maintainer: "Didier Le Botlan <github.lebotlan@dfgh.net>"
3homepage: "https://github.com/lebotlan/ocaml-cryptodbm"
4bug-reports: "https://github.com/lebotlan/ocaml-cryptodbm/issues"
5dev-repo: "git+https://github.com/lebotlan/ocaml-cryptodbm.git"
6license: "MIT"
7depends: [
8 "ocaml" {>= "4.02.3"}
9 "jbuilder" {>= "1.0+beta7"}
10 "dbm"
11 "fileutils"
12 "cryptokit"
13]
14build: [["jbuilder" "build" "-p" name "-j" jobs]]
15synopsis:
16 "Encrypted layer over the dbm library: access to serverless, key-value databases with symmetric encryption."
17description: """
18This library provides an encrypted layer on top of the Dbm and Cryptokit packages. The improvements over Dbm are:
19 - A single database file may contain several independent subtables, identified by a name (a string).
20 - Each subtable can be signed and encrypted individually, or encrypted using a common password.
21 - The whole file can be signed.
22 - Obfuscating data is -optionally- appended to keys, data, and to the whole table, so that two databases with
23 the same content look significantly different, once encrypted.
24 - Encryption is symmetric: encryption and decryption both use the same password.
25 - Signature is symmetric: signing and verifying the signature both use the same signword."""
26authors: "Didier Le Botlan <github.lebotlan@dfgh.net>"
27url {
28 src: "https://github.com/lebotlan/ocaml-cryptodbm/archive/v0.84.2.tar.gz"
29 checksum: [
30 "sha256=388a4a8bf17c9ad0825907251720ba40291a19afb643f64066a29e813be50a7e"
31 "md5=7c33f55fca768501d06e2ef0eb583f80"
32 ]
33}