-
Notifications
You must be signed in to change notification settings - Fork 7
/
nonce.cabal
43 lines (41 loc) · 1.43 KB
/
nonce.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
name: nonce
version: 1.0.7
synopsis: Generate cryptographic nonces.
homepage: https://github.com/prowdsponsor/nonce
license: BSD3
license-file: LICENSE
author: Felipe Lessa <[email protected]>
maintainer: Prowdsponsor <[email protected]>
copyright: (c) 2014 Prowdsponsor
category: Cryptography
build-type: Simple
cabal-version: >= 1.10
description:
According to the Wikipedia, a nonce is an arbitrary number used
only once in a cryptographic communication. This package
contain helper functions for generating nonces.
.
There are many kinds of nonces used in different situations.
It's not guaranteed that by using the nonces from this package
you won't have any security issues. Please make sure that the
nonces generated via this package are usable on your design.
source-repository head
type: git
location: git://github.com/prowdsponsor/nonce.git
library
exposed-modules:
Crypto.Nonce
build-depends:
base >= 4.5 && < 5
, base64-bytestring >= 1.0 && < 1.3
, bytestring >= 0.9
, text >= 0.9
, transformers >= 0.2
, entropy >= 0.3.7 && < 0.4.2
, unliftio
, unliftio-core
hs-source-dirs: src/
default-language: Haskell2010
ghc-options: -Wall
default-extensions:
DeriveDataTypeable