-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstego-uuid.cabal
51 lines (40 loc) · 1.84 KB
/
stego-uuid.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
name: stego-uuid
version: 1.0.0.0
synopsis: Generator and verifier for steganographic numbers
description:
`stego-uuid` allows one to mark 128-bit UUIDs. If created from a random 64-bit number, the
whole 128-bit UUID will look random to everyone, except those who know the secret detection key.
homepage: https://github.com/dimitri-xyz/stego-uuid#readme
author: Dimitri DeFigueiredo
maintainer: [email protected]
Bug-Reports: https://github.com/dimitri-xyz/stego-uuid/issues
copyright: 2017 Dimitri DeFigueiredo
license: BSD3
license-file: LICENSE
category: Steganography, Cryptography
build-type: Simple
extra-doc-files: README.md
cabal-version: >=1.20
library
hs-source-dirs: src
exposed-modules: Crypto.Stego.UUID
default-language: Haskell2010
build-depends: base >= 4.9.1 && < 5
, uuid >= 1.3.13 && < 1.4
, cryptonite >= 0.21 && < 0.26
, bytestring >= 0.10.8 && < 0.11
, memory >= 0.14.1 && < 0.15
ghc-options: -Wall -fwarn-incomplete-record-updates -fwarn-incomplete-patterns -fwarn-incomplete-uni-patterns -j
test-suite test-stego-uuid
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
build-depends: base >= 4.9.1 && < 5
, stego-uuid
, random >= 1.1 && < 1.2
, uuid >= 1.3.13 && < 1.4
ghc-options: -Wall -fwarn-incomplete-record-updates -fwarn-incomplete-patterns -fwarn-incomplete-uni-patterns -j -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/dimitri-xyz/stego-uuid