-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathppad-sha512.cabal
68 lines (59 loc) · 1.46 KB
/
ppad-sha512.cabal
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
cabal-version: 3.0
name: ppad-sha512
version: 0.1.3
synopsis: The SHA-512 and HMAC-SHA512 algorithms
license: MIT
license-file: LICENSE
author: Jared Tobin
maintainer: [email protected]
category: Cryptography
build-type: Simple
tested-with: GHC == { 9.8.1, 9.6.6, 9.6.4 }
extra-doc-files: CHANGELOG
description:
A pure implementation of SHA-512 and HMAC-SHA512 on strict and lazy
ByteStrings, as specified by RFC's 6234 and 2104.
source-repository head
type: git
location: git.ppad.tech/sha512.git
library
default-language: Haskell2010
hs-source-dirs: lib
ghc-options:
-Wall
exposed-modules:
Crypto.Hash.SHA512
build-depends:
base >= 4.9 && < 5
, bytestring >= 0.9 && < 0.13
test-suite sha512-tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Main.hs
other-modules:
Wycheproof
ghc-options:
-rtsopts -Wall -O2
build-depends:
aeson
, base
, base16-bytestring
, bytestring
, ppad-sha512
, tasty
, tasty-hunit
, text
benchmark sha512-bench
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: bench
main-is: Main.hs
ghc-options:
-rtsopts -O2 -Wall
build-depends:
base
, bytestring
, criterion
, ppad-sha512
, SHA