├── LICENSE ├── README.md ├── doc ├── ecgfp5.pdf ├── ecgfp5.tex └── llncs.cls ├── python └── ecGFp5.py └── rust ├── Cargo.toml ├── benches ├── curve.rs ├── field.rs └── scalar.rs └── src ├── curve.rs ├── field.rs ├── lib.rs ├── multab.rs └── scalar.rs /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/README.md -------------------------------------------------------------------------------- /doc/ecgfp5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/doc/ecgfp5.pdf -------------------------------------------------------------------------------- /doc/ecgfp5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/doc/ecgfp5.tex -------------------------------------------------------------------------------- /doc/llncs.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/doc/llncs.cls -------------------------------------------------------------------------------- /python/ecGFp5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/python/ecGFp5.py -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/benches/curve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/rust/benches/curve.rs -------------------------------------------------------------------------------- /rust/benches/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/rust/benches/field.rs -------------------------------------------------------------------------------- /rust/benches/scalar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/rust/benches/scalar.rs -------------------------------------------------------------------------------- /rust/src/curve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/rust/src/curve.rs -------------------------------------------------------------------------------- /rust/src/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/rust/src/field.rs -------------------------------------------------------------------------------- /rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/rust/src/lib.rs -------------------------------------------------------------------------------- /rust/src/multab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/rust/src/multab.rs -------------------------------------------------------------------------------- /rust/src/scalar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pornin/ecgfp5/HEAD/rust/src/scalar.rs --------------------------------------------------------------------------------