-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14413 from dinosaure/release-eqaf-0.5
[new release] eqaf (0.5)
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
opam-version: "2.0" | ||
name: "eqaf" | ||
maintainer: [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ] | ||
authors: [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ] | ||
homepage: "https://github.com/mirage/eqaf" | ||
bug-reports: "https://github.com/mirage/eqaf/issues" | ||
dev-repo: "git+https://github.com/mirage/eqaf.git" | ||
doc: "https://mirage.github.io/eqaf/" | ||
license: "MIT" | ||
synopsis: "Constant-time equal function on string" | ||
description: """ | ||
This package provides an equal function on string in constant-time to avoid timing-attack with crypto stuff. | ||
""" | ||
|
||
build: [ | ||
[ "dune" "subst" ] {pinned} | ||
[ "dune" "build" "-p" name "-j" jobs ] | ||
[ "dune" "runtest" "-p" name "-j" "1" "--no-buffer" "--verbose" ] {with-test} | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.03.0"} | ||
"dune" {build} | ||
"alcotest" {with-test} | ||
"crowbar" {with-test} | ||
] | ||
url { | ||
src: "https://github.com/mirage/eqaf/releases/download/v0.5/eqaf-v0.5.tbz" | ||
checksum: [ | ||
"sha256=58ef81c110ee44669b1951df669cdc1f60ca34f0063cf0ae8b87568111af73f2" | ||
"sha512=8a5761596bb8cbde8743161502900423f369d3de3b4b999a940b93d66b1830204fdb67165eff461f3eec0cdb1e169ebd6c9b80f5a8162bc12f359b606a0cbb17" | ||
] | ||
} |