packages feed

NTRU-1.0.0.1: NTRU.cabal

-- Initial NTRU.cabal generated by cabal init.  For further documentation, 
-- see http://haskell.org/cabal/users-guide/

-- The name of the package.
name:                NTRU

-- The package version.  See the Haskell package versioning policy (PVP) 
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             1.0.0.1

-- A short (one-line) description of the package.
synopsis: NTRU Cryptography         

-- A longer description of the package.
description: A Haskell implementation of the NTRU cryptographic system, following the IEEE Standard Specification for Public Key Crpytographic Techniques Based on Hard Problems over Lattices (IEEE Std 1363.1-2008)

-- The license under which the package is released.
license:             GPL

-- The file containing the license text.
license-file:        LICENSE

-- The package author(s).
author:              Theo Levine, Tom Cornelius, Elizabeth Hughes, CyberPoint International LLC. 

-- An email address to which users can send suggestions, bug reports, and 
-- patches.
maintainer:          opensource@cyberpointllc.com

-- A copyright notice.
copyright:           2014, CyberPoint International, LLC       

category:            Cryptography, Math

build-type:          Simple

extra-source-files: README.md, examples/sampleGeneralNTRU.hs, examples/sampleSpecificNTRU.hs

-- Constraint on the version of Cabal needed to build this package.
cabal-version:       >=1.8


library

  hs-source-dirs:       src

  ghc-options:          -Wall

  -- Modules exported by the library.
  exposed-modules:     Math.NTRU
                       Math.NTRU.EES401EP1
                       Math.NTRU.EES449EP1
                       Math.NTRU.EES677EP1
                       Math.NTRU.EES1087EP2
                       Math.NTRU.EES541EP1
                       Math.NTRU.EES613EP1
                       Math.NTRU.EES887EP1
                       Math.NTRU.EES1171EP1
                       Math.NTRU.EES659EP1
                       Math.NTRU.EES761EP1
                       Math.NTRU.EES1087EP1
                       Math.NTRU.EES1499EP1                       

  -- Modules included in this library but not exported.
  -- other-modules:       
  
  -- Other library packages from which modules are imported.
  build-depends:       base ==4.6.*, SHA ==1.6.*, split ==0.2.*, containers ==0.5.*, crypto-api ==0.13.*, random ==1.1.*, polynomial ==0.7.*, arithmoi ==0.4.*, bytestring ==0.10.*