this repo has no description
1opam-version: "2.0" 2homepage: "https://github.com/sg2342/mirage-block-ccm" 3dev-repo: "git+https://github.com/sg2342/mirage-block-ccm.git" 4bug-reports: "https://github.com/sg2342/mirage-block-ccm/issues" 5maintainer: ["Stefan Grundmann <sg2342@googlemail.com>"] 6license: "ISC" 7synopsis: "AES-CCM encrypted Mirage Mirage_types.BLOCK storage" 8description: """ 9AES-CCM encrypted Mirage Mirage_types.BLOCK storage 10 11uses two sectors of the underlying Mirage_types.BLOCK per provided sector: 12 13``` 14+-----------------------------------+ 15| CT | nonce | adata | 16+-----------------+-----------------+ 17| sector n | sector n+1 | 18+-----------------+-----------------+ 19``` 20 21- `CT` is `sector_size + maclen` bytes AES-CCM ciphertext 22- `nonce` is `nonce_len` bytes random nonce 23- `adata` is `sector_size - nonce_len - maclen` random additional authenticated data 24""" 25 26build: [ 27 ["dune" "subst"] {dev} 28 ["dune" "build" "-p" name "-j" jobs] 29 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 30] 31 32depends: [ 33 "ocaml" {>= "4.08.0"} 34 "dune" {>= "2.7.0"} 35 "cstruct" {>= "6.0.0"} 36 "lwt" {>= "2.4.3"} 37 "mirage-block" {>= "2.0.0"} 38 "mirage-crypto" {>= "0.8.1" & < "0.11.0"} 39 "mirage-crypto-rng" {< "0.11.0"} 40 "ounit2" {with-test} 41 "bisect_ppx" {dev} 42 "cmdliner" {>= "1.1.0"} 43 "astring" 44 "mirage-block-unix" 45] 46authors: "Stefan Grundmann <sg2342@googlemail.com>" 47url { 48 src: 49 "https://github.com/sg2342/mirage-block-ccm/releases/download/v1.1.0/mirage-block-ccm-1.1.0.tbz" 50 checksum: [ 51 "sha256=5da0c0fa17e6071ee0c66f4455c373d6dd326a62e43a25e3baf68957db62907d" 52 "sha512=5d7334094dcefc02ffde9de7b6a1559ae8edb828f132c96265f37f8c0fe80859f05a632c82acbaa8a6a641e06e4645a1bccbcd68d32a17686c68d5267f031357" 53 ] 54} 55x-commit-hash: "b41631f0ce6a6a992463908d33c142452f6f925f"