lol-apps: Lattice-based cryptographic applications using Lol.

[ crypto, gpl, library ] [ Propose Tags ]
This version is deprecated.

This library contains example cryptographic applications built using Λ ∘ λ (Lol), a general-purpose library for ring-based lattice cryptography.


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
llvm

Compile via LLVM. This produces much better object code, but you need to have the LLVM compiler installed.

Disabled
opt

Turn on library optimizations

Enabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.0.1, 0.1.0.0, 0.1.1.0, 0.2.0.0, 0.2.0.1, 0.2.0.2, 0.3.0.0 (info)
Change log CHANGES.md
Dependencies arithmoi, base (>=4.9 && <5), containers, deepseq (>=1.4.1.1), DRBG, filepath, lol (>=0.6.0.0), lol-apps, lol-cpp, MonadRandom (>=0.2), mtl, numeric-prelude (>=0.4.2), protocol-buffers, protocol-buffers-descriptor, singletons, split, time [details]
License GPL-2.0-only
Copyright Eric Crockett, Chris Peikert
Author Eric Crockett <ecrockett0@gmail.com>, Chris Peikert <cpeikert@alum.mit.edu>
Maintainer Eric Crockett <ecrockett0@gmail.com>
Category Crypto
Home page https://github.com/cpeikert/Lol
Bug tracker https://github.com/cpeikert/Lol/issues
Source repo head: git clone https://github.com/cpeikert/Lol
Uploaded by crockeea at 2017-02-21T16:38:24Z
Distributions
Executables symmshe, khprf, homomprf
Downloads 4571 total (15 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2017-02-21 [all 1 reports]

Readme for lol-apps-0.2.0.0

[back to package description]
Overview of applications:

* SymmSHE.hs gives an implementation of a symmetric-key,
  somewhat-homomorphic encryption scheme that is essentially
  equivalent to the one from the toolkit paper [LPR'13].

* KeyHomomorphicPRF.hs gives an implementation of the
  key-homomorphic pseudo-random function from Banerjee
  and Peikert in Crypto 2014 ([BP14]).

* HomomPRF provides an interface for the homomorphic evaluation of the [BP14]
  PRF.

Note that an example using each application can be found in the 'examples'
directory. Tests and benchmarks for SHE and KeyHomomorphicPRF are provided in
the 'tests' and 'benchmarks' directories. Tests and benchmarks for HomomPRF are
included in the example for HomomPRF.