-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhaskcripto.cabal
More file actions
39 lines (37 loc) · 1.35 KB
/
haskcripto.cabal
File metadata and controls
39 lines (37 loc) · 1.35 KB
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
-- Initial haskcripto.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: haskcripto
version: 0.1.0.0
synopsis: HaskCrypto is a Haskell library for cryptography
-- description:
license: MIT
license-file: LICENSE
author: adrian052
maintainer: a_drian1@hotmail.es
-- copyright:
category: Cryptography
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
library
exposed-modules: Substitution.Caesar
, Substitution.RailFence
, Substitution.Keyword
, Substitution.Atbash
, Block.DES.DES
, Block.DES.InitialPermutation
, Block.DES.Mangler
, Block.DES.Round
, Matrix
, Hash.MD5.Functions
, Hash.MD5.Padding
, Hash.MD5.InitValues
, Hash.MD5.MD5
, Hash.MD5.Round
, Hash.MD5.ProcessBlock
build-depends: base >= 4.8 && < 5
, bytestring
, containers
, split
hs-source-dirs: src
default-language: Haskell2010