-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathh2fa.cabal
69 lines (57 loc) · 2.01 KB
/
h2fa.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
68
69
cabal-version: 2.4
name: h2fa
version: 0.0.1
synopsis: TOTP and HOTP(HMAC) generetor from Base32 encrypted key
license: MIT
license-file: LICENSE
copyright: 2022 Khan Mohammad R.
description: HOTP(HMAC) -> [RFC 4226](https://tools.ietf.org/html/rfc4226)
TOTP -> [RFC 6238](https://tools.ietf.org/html/rfc6238).
author: Khan Mohammad R.
maintainer: codemascot@hotmail.com
homepage: https://github.com/codemascot/h2fa
bug-reports: https://github.com/codemascot/h2fa/issues
category: Cryptography
build-type: Simple
tested-with: GHC==8.10.7
extra-source-files: CHANGELOG.md
README.md
library
exposed-modules: HMAC.H2fa
build-depends: base ^>=4.14.3.0
, time ^>=1.12.2
, bytestring ^>=0.10.12.0
, base32-lens ^>=0.1.1.1
, base32 ^>=0.2.2.0
, text ^>=1.2.5.0
, SHA ^>=1.6.4.4
hs-source-dirs: src
default-language: Haskell2010
executable h2fa
main-is: Main.hs
build-depends: base ^>=4.14.3.0
, time ^>=1.12.2
, bytestring ^>=0.10.12.0
, base32-lens ^>=0.1.1.1
, base32 ^>=0.2.2.0
, text ^>=1.2.5.0
, SHA ^>=1.6.4.4
hs-source-dirs: app src
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: test src
main-is: Test.hs
other-modules: HMAC.H2fa
default-language: Haskell2010
other-extensions: OverloadedStrings
build-depends: base
, time
, bytestring
, base32-lens ^>=0.1.1.1
, base32 ^>=0.2.2.0
, text ^>=1.2.5.0
, SHA ^>=1.6.4.4
, tasty >= 1.1 && < 1.3
, tasty-hunit == 0.10.*
ghc-options: -Wall