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.