From 47252cb2dbf5389ae0f9ddc68c2cd494bab42607 Mon Sep 17 00:00:00 2001 From: Christian M Date: Fri, 9 Oct 2020 13:35:16 +0200 Subject: [PATCH] added a root package --- lattigo.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lattigo.go diff --git a/lattigo.go b/lattigo.go new file mode 100644 index 00000000..68d9d754 --- /dev/null +++ b/lattigo.go @@ -0,0 +1,10 @@ +/* +Package lattigo is a cryptographic library implementing lattice-based cryptographic primitives. The library features: + + - A pure Go implementation enabling code-simplicity and easy builds. + - A public interface for an efficient multi-precision polynomial arithmetic layer. + - Comparable performance to state-of-the-art C++ libraries. + +Lattigo aims at enabling fast prototyping of secure-multiparty computation solutions based on distributed homomorphic cryptosystems, by harnessing Go's natural concurrency model. +*/ +package lattigo