From 5da1b4fcf8b50d7e0cf00da49ab6b78291efafd6 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sun, 19 Jun 2022 06:35:45 -0400 Subject: [PATCH] Prepare multiexp for publishing --- crypto/multiexp/Cargo.toml | 2 ++ crypto/multiexp/README.md | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 crypto/multiexp/README.md diff --git a/crypto/multiexp/Cargo.toml b/crypto/multiexp/Cargo.toml index b45dbcf5..c4c73690 100644 --- a/crypto/multiexp/Cargo.toml +++ b/crypto/multiexp/Cargo.toml @@ -3,7 +3,9 @@ name = "multiexp" version = "0.1.0" description = "Multiexponentation algorithms for ff/group" license = "MIT" +repository = "https://github.com/serai-dex/serai" authors = ["Luke Parker "] +keywords = ["multiexp", "ff", "group"] edition = "2021" [dependencies] diff --git a/crypto/multiexp/README.md b/crypto/multiexp/README.md new file mode 100644 index 00000000..80668458 --- /dev/null +++ b/crypto/multiexp/README.md @@ -0,0 +1,6 @@ +# Multiexp + +A multiexp implementation for ff/group implementing Straus and Pippenger. A +batch verification API is also available via the "batch" feature, which enables +secure multiexponentation batch verification given a series of values which +should sum to 0, identifying which doesn't via binary search if they don't.