-
Notifications
You must be signed in to change notification settings - Fork 6
/
pkcs11.opam
33 lines (32 loc) · 963 Bytes
/
pkcs11.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
opam-version: "2.0"
maintainer: ["Cryptosense <[email protected]>"]
authors: ["Cryptosense <[email protected]>"]
homepage: "https://github.com/cryptosense/pkcs11"
bug-reports: "https://github.com/cryptosense/pkcs11/issues"
license: "BSD-2-Clause"
dev-repo: "git+https://github.com/cryptosense/pkcs11.git"
doc: "https://cryptosense.github.io/pkcs11/doc"
build: [
["dune" "build" "-p" name "-j" jobs]
]
run-test: [
["dune" "runtest" "-p" name "-j" jobs]
]
depends: [
"dune" {>= "2.0.0"}
"hex" { >= "1.0.0" }
"integers"
"ppx_deriving" { >= "4.2" }
"ppx_deriving_yojson" { >= "3.4" }
"ppx_variants_conv"
"zarith"
"ocaml" {>= "4.07.0"}
"ounit" {with-test}
]
tags: ["org:cryptosense"]
synopsis: "PKCS#11 OCaml types"
description: """
This library contains type definitions for the PKCS#11 API.
This API is used by smartcards and Hardware Security Modules to perform
cryptographic operations such as signature or encryption.
"""