├── .github └── workflows │ └── build_test.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── chacha20.rs └── dalek.rs └── src └── lib.rs /.github/workflows/build_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacspec/rust-secret-integers/HEAD/.github/workflows/build_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target/ 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacspec/rust-secret-integers/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacspec/rust-secret-integers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacspec/rust-secret-integers/HEAD/README.md -------------------------------------------------------------------------------- /examples/chacha20.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacspec/rust-secret-integers/HEAD/examples/chacha20.rs -------------------------------------------------------------------------------- /examples/dalek.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacspec/rust-secret-integers/HEAD/examples/dalek.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacspec/rust-secret-integers/HEAD/src/lib.rs --------------------------------------------------------------------------------