├── .github └── workflows │ └── rust.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches └── benchmarks.rs ├── examples ├── decode.rs └── encode.rs ├── src ├── builder.rs ├── harsh.rs └── lib.rs └── tests ├── bad_input.rs ├── custom_alphabet.rs ├── custom_params.rs ├── custom_params_hex.rs ├── custom_salt.rs ├── default_params.rs ├── default_params_hex.rs └── min_length.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/README.md -------------------------------------------------------------------------------- /benches/benchmarks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/benches/benchmarks.rs -------------------------------------------------------------------------------- /examples/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/examples/decode.rs -------------------------------------------------------------------------------- /examples/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/examples/encode.rs -------------------------------------------------------------------------------- /src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/src/builder.rs -------------------------------------------------------------------------------- /src/harsh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/src/harsh.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/bad_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/tests/bad_input.rs -------------------------------------------------------------------------------- /tests/custom_alphabet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/tests/custom_alphabet.rs -------------------------------------------------------------------------------- /tests/custom_params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/tests/custom_params.rs -------------------------------------------------------------------------------- /tests/custom_params_hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/tests/custom_params_hex.rs -------------------------------------------------------------------------------- /tests/custom_salt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/tests/custom_salt.rs -------------------------------------------------------------------------------- /tests/default_params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/tests/default_params.rs -------------------------------------------------------------------------------- /tests/default_params_hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/tests/default_params_hex.rs -------------------------------------------------------------------------------- /tests/min_length.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archer884/harsh/HEAD/tests/min_length.rs --------------------------------------------------------------------------------