Skip to content

Commit 727516b

Browse files
authored
Merge pull request #26246 from abeaumont/opam-publish-pbkdf.2.0.0
Package pbkdf.2.0.0
2 parents bfd47b9 + bbdea05 commit 727516b

File tree

1 file changed

+34
-0
lines changed
  • packages/pbkdf/pbkdf.2.0.0

1 file changed

+34
-0
lines changed

packages/pbkdf/pbkdf.2.0.0/opam

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
opam-version: "2.0"
2+
synopsis: "Password based key derivation functions (PBKDF) from PKCS#5"
3+
description: """
4+
An implementation of PBKDF 1 and 2 as defined by [PKCS#5](https://tools.ietf.org/html/rfc2898) using
5+
[mirage-crypto](https://github.com/mirage/mirage-crypto)
6+
"""
7+
maintainer: ["Alfredo Beaumont <[email protected]>"]
8+
authors: ["Alfredo Beaumont <[email protected]>" "Sonia Meruelo <[email protected]>"]
9+
license: "BSD-2-Clause"
10+
homepage: "https://github.com/abeaumont/ocaml-pbkdf"
11+
bug-reports: "https://github.com/abeaumont/ocaml-pbkdf/issues"
12+
dev-repo: "git+https://github.com/abeaumont/ocaml-pbkdf.git"
13+
doc: "https://abeaumont.github.io/ocaml-pbkdf/"
14+
depends: [
15+
"ocaml" {>= "4.07.0"}
16+
"dune" {>= "1.8.0"}
17+
"mirage-crypto" {>= "1.0.0"}
18+
"digestif" {>= "1.2"}
19+
"alcotest" {with-test & >= "0.8.1"}
20+
"ohex" {with-test}
21+
]
22+
build: [
23+
[ "dune" "subst" ] {dev}
24+
[ "dune" "build" "-j" jobs "-p" name "@install" ]
25+
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
26+
]
27+
url {
28+
src:
29+
"https://github.com/abeaumont/ocaml-pbkdf/archive/refs/tags/2.0.0.tar.gz"
30+
checksum: [
31+
"md5=44fe12700b5f5e3dd9ea7457188b3674"
32+
"sha512=7520375abe90627aa7aa653083c1914ac79a4c7a44099a1fd77efbce213a64910f2110c42a25883c48b355073060b0afb70222b8666bc33fcca2c913a247c782"
33+
]
34+
}

0 commit comments

Comments
 (0)