├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── benches └── on_curve_cmp.rs ├── examples └── pda.rs └── src ├── bs58.rs ├── common ├── Cargo.toml └── src │ └── lib.rs ├── ed25519 ├── choice.rs ├── field_element.rs └── mod.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavemanloverboy/const-crypto/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavemanloverboy/const-crypto/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavemanloverboy/const-crypto/HEAD/README.md -------------------------------------------------------------------------------- /benches/on_curve_cmp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavemanloverboy/const-crypto/HEAD/benches/on_curve_cmp.rs -------------------------------------------------------------------------------- /examples/pda.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavemanloverboy/const-crypto/HEAD/examples/pda.rs -------------------------------------------------------------------------------- /src/bs58.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavemanloverboy/const-crypto/HEAD/src/bs58.rs -------------------------------------------------------------------------------- /src/common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavemanloverboy/const-crypto/HEAD/src/common/Cargo.toml -------------------------------------------------------------------------------- /src/common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavemanloverboy/const-crypto/HEAD/src/common/src/lib.rs -------------------------------------------------------------------------------- /src/ed25519/choice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavemanloverboy/const-crypto/HEAD/src/ed25519/choice.rs -------------------------------------------------------------------------------- /src/ed25519/field_element.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavemanloverboy/const-crypto/HEAD/src/ed25519/field_element.rs -------------------------------------------------------------------------------- /src/ed25519/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavemanloverboy/const-crypto/HEAD/src/ed25519/mod.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavemanloverboy/const-crypto/HEAD/src/lib.rs --------------------------------------------------------------------------------