Cabal revisions of rlwe-challenges-0.0.0.1
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-name: rlwe-challenges--- 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: 0.0.0.1-synopsis: Ring-LWE/LWR challenges using Lol.-homepage: https://github.com/cpeikert/Lol-Bug-Reports: https://github.com/cpeikert/Lol/issues-license: GPL-2-license-file: LICENSE-author: Eric Crockett <ecrockett0@gmail.com>, Chris Peikert <cpeikert@alum.mit.edu>-maintainer: Eric Crockett <ecrockett0@gmail.com>-copyright: Eric Crockett, Chris Peikert-category: Crypto-stability: experimental-build-type: Simple-extra-source-files: README, CHANGES.md-cabal-version: >= 1.10-description: TODO.--source-repository head- type: git- location: https://github.com/cpeikert/Lol--library- default-language: Haskell2010- ghc-options: -O3 -auto-all -caf-all -Wall-- exposed-modules:- Crypto.Proto.RLWE.Challenges- Crypto.Proto.RLWE.Challenges.Challenge- Crypto.Proto.RLWE.Challenges.Challenge.Params- Crypto.Proto.RLWE.Challenges.ContParams- Crypto.Proto.RLWE.Challenges.DiscParams- Crypto.Proto.RLWE.Challenges.RLWRParams- Crypto.Proto.RLWE.Challenges.InstanceCont- Crypto.Proto.RLWE.Challenges.InstanceDisc- Crypto.Proto.RLWE.Challenges.InstanceRLWR- Crypto.Proto.RLWE.Challenges.Secret-- build-depends: base < 5,- lol >= 0.5.0.0,- MonadRandom,- protocol-buffers,- protocol-buffers-descriptor--executable rlwe-challenges- default-language: Haskell2010- hs-source-dirs: exec- main-is: Main.hs-- ghc-options: -threaded -rtsopts -O3 -auto-all -caf-all -fno-warn-partial-type-signatures-- other-modules:- Beacon- Common- Generate- Params- Suppress- Verify-- build-depends: ansi-terminal,- base,- bytestring,- containers,- directory,- DRBG,- filepath,- http-client,- http-conduit,- lol >= 0.5.0.0,- MonadRandom,- mtl,- options,- nist-beacon,- parsec,- protocol-buffers,- reflection,- rlwe-challenges,- tagged,- time,- transformers+name: rlwe-challenges +-- 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: 0.0.0.1 +x-revision: 1 +synopsis: Ring-LWE/LWR challenges using Lol. +homepage: https://github.com/cpeikert/Lol +Bug-Reports: https://github.com/cpeikert/Lol/issues +license: GPL-2 +license-file: LICENSE +author: Eric Crockett <ecrockett0@gmail.com>, Chris Peikert <cpeikert@alum.mit.edu> +maintainer: Eric Crockett <ecrockett0@gmail.com> +copyright: Eric Crockett, Chris Peikert +category: Crypto +stability: experimental +build-type: Simple +extra-source-files: README, CHANGES.md +cabal-version: >= 1.10 +description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE/RLWR challenges. + +source-repository head + type: git + location: https://github.com/cpeikert/Lol + +library + default-language: Haskell2010 + ghc-options: -O3 -auto-all -caf-all -Wall + + exposed-modules: + Crypto.Proto.RLWE.Challenges + Crypto.Proto.RLWE.Challenges.Challenge + Crypto.Proto.RLWE.Challenges.Challenge.Params + Crypto.Proto.RLWE.Challenges.ContParams + Crypto.Proto.RLWE.Challenges.DiscParams + Crypto.Proto.RLWE.Challenges.RLWRParams + Crypto.Proto.RLWE.Challenges.InstanceCont + Crypto.Proto.RLWE.Challenges.InstanceDisc + Crypto.Proto.RLWE.Challenges.InstanceRLWR + Crypto.Proto.RLWE.Challenges.Secret + + build-depends: base < 5, + lol >= 0.5.0.0, + MonadRandom, + protocol-buffers, + protocol-buffers-descriptor + +executable rlwe-challenges + default-language: Haskell2010 + hs-source-dirs: exec + main-is: Main.hs + + ghc-options: -threaded -rtsopts -O3 -auto-all -caf-all -fno-warn-partial-type-signatures + + other-modules: + Beacon + Common + Generate + Params + Suppress + Verify + + build-depends: ansi-terminal, + base, + bytestring, + containers, + directory, + DRBG, + filepath, + http-client, + http-conduit, + lol >= 0.5.0.0, + MonadRandom, + mtl, + options, + nist-beacon, + parsec, + protocol-buffers, + reflection, + rlwe-challenges, + tagged, + time, + transformers
revision 2
-- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 0.0.0.1 -x-revision: 1 +x-revision: 2 synopsis: Ring-LWE/LWR challenges using Lol. homepage: https://github.com/cpeikert/Lol Bug-Reports: https://github.com/cpeikert/Lol/issues build-type: Simple extra-source-files: README, CHANGES.md cabal-version: >= 1.10 -description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE/RLWR challenges. +description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE/RLWR challenges using <https://hackage.haskell.org/package/lol Λ ○ λ> (Lol). source-repository head type: git
revision 3
-- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 0.0.0.1 -x-revision: 2 +x-revision: 3 synopsis: Ring-LWE/LWR challenges using Lol. homepage: https://github.com/cpeikert/Lol Bug-Reports: https://github.com/cpeikert/Lol/issues build-type: Simple extra-source-files: README, CHANGES.md cabal-version: >= 1.10 -description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE/RLWR challenges using <https://hackage.haskell.org/package/lol Λ ○ λ> (Lol). +description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE/RLWR challenges using <https://hackage.haskell.org/package/lol Λ ○ λ> (Lol). source-repository head type: git
revision 4
-- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 0.0.0.1 -x-revision: 3 +x-revision: 4 synopsis: Ring-LWE/LWR challenges using Lol. homepage: https://github.com/cpeikert/Lol Bug-Reports: https://github.com/cpeikert/Lol/issues build-type: Simple extra-source-files: README, CHANGES.md cabal-version: >= 1.10 -description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE/RLWR challenges using <https://hackage.haskell.org/package/lol Λ ○ λ> (Lol). +description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE\/RLWR challenges using <https://hackage.haskell.org/package/lol Λ ○ λ> (Lol). source-repository head type: git
revision 5
-- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 0.0.0.1 -x-revision: 4 +x-revision: 5 synopsis: Ring-LWE/LWR challenges using Lol. homepage: https://github.com/cpeikert/Lol Bug-Reports: https://github.com/cpeikert/Lol/issues build-type: Simple extra-source-files: README, CHANGES.md cabal-version: >= 1.10 -description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE\/RLWR challenges using <https://hackage.haskell.org/package/lol Λ ○ λ> (Lol). +description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE and RLWR challenges using <https://hackage.haskell.org/package/lol Λ ○ λ> (Lol). source-repository head type: git
revision 6
-- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 0.0.0.1 -x-revision: 5 +x-revision: 6 synopsis: Ring-LWE/LWR challenges using Lol. homepage: https://github.com/cpeikert/Lol Bug-Reports: https://github.com/cpeikert/Lol/issues build-type: Simple extra-source-files: README, CHANGES.md cabal-version: >= 1.10 -description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE and RLWR challenges using <https://hackage.haskell.org/package/lol Λ ○ λ> (Lol). +description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE and RLWR challenges using <https://hackage.haskell.org/package/lol Λ ∘ λ> (Lol). source-repository head type: git
revision 7
-- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 0.0.0.1 -x-revision: 6 +x-revision: 7 synopsis: Ring-LWE/LWR challenges using Lol. homepage: https://github.com/cpeikert/Lol Bug-Reports: https://github.com/cpeikert/Lol/issues build-type: Simple extra-source-files: README, CHANGES.md cabal-version: >= 1.10 -description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE and RLWR challenges using <https://hackage.haskell.org/package/lol Λ ∘ λ> (Lol). +description: Contains a library for reading serialized challenges (generated with <https://hackage.haskell.org/package/hprotoc hprotoc>) and an executable used to generate, suppress, and verify RLWE and RLWR challenges using <https://hackage.haskell.org/package/lol Λ ∘ λ> (Lol). You can find more information about the challenges <https://web.eecs.umich.edu/~cpeikert/rlwe-challenges here>. source-repository head type: git