├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── benches └── compare_with_sha.rs └── src ├── hash_matrix.rs ├── lib.rs └── lookup_table.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/bromberg_sl2/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/bromberg_sl2/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/bromberg_sl2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/bromberg_sl2/HEAD/README.md -------------------------------------------------------------------------------- /benches/compare_with_sha.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/bromberg_sl2/HEAD/benches/compare_with_sha.rs -------------------------------------------------------------------------------- /src/hash_matrix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/bromberg_sl2/HEAD/src/hash_matrix.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/bromberg_sl2/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/lookup_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benwr/bromberg_sl2/HEAD/src/lookup_table.rs --------------------------------------------------------------------------------