-
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.
Signed-off-by: David Scott <[email protected]>
- Loading branch information
Showing
3 changed files
with
25 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,4 @@ | ||
Binding to the SHA cryptographic functions | ||
This is the binding for SHA interface code in OCaml. Offering the same | ||
interface than the MD5 digest included in the OCaml standard library. | ||
It's currently providing SHA1, SHA256 and SHA512 hash functions. |
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,19 @@ | ||
opam-version: "1.2" | ||
maintainer: "[email protected]" | ||
authors: [ | ||
"Vincent Hanquez" "Thomas Gazagnaire" "Goswin von Brederlow" | ||
"Eric Cooper" "Florent Monnier" "Forrest L Norvell" | ||
"Vincent Bernadoff" "David Scott" | ||
] | ||
homepage: "https://github.com/djs55/ocaml-sha" | ||
bug-reports: "https://github.com/djs55/ocaml-sha/issues" | ||
dev-repo: "https://github.com/djs55/ocaml-sha.git" | ||
license: "ISC" | ||
|
||
build: make | ||
install: [make "install"] | ||
remove: [["ocamlfind" "remove" "sha"]] | ||
|
||
depends: ["ocamlfind"] | ||
|
||
available: [ ocaml-version >= "4.02.0" ] |
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,2 @@ | ||
archive: "https://github.com/djs55/ocaml-sha/releases/download/v1.11/ocaml-sha.1.11.tgz" | ||
checksum: "85675f2542b3d1a4e9e6ac49dd4801e4" |