aboutsummaryrefslogtreecommitdiff
path: root/spake2/src/tests.rs
AgeCommit message (Collapse)Author
2022-01-22spake2: refactor internals (#91)Tony Arcieri
Splits the crate apart into multiple modules
2022-01-22spake2: capitalization and doc fixes (#89)Tony Arcieri
Renames the following: - `SPAKE2` => `Spake2` - `SPAKEErr` -> `Error` Additionally lints for `missing_docs` and adds preliminary documentation for all types and methods which previously had none.
2022-01-22spake2: initial `no_std` support (#87)Tony Arcieri
Still has a hard dependency on `alloc`, and with the current hard dependency on `getrandom` also limited platform support
2022-01-22spake2: bump `hkdf` to v0.12; `sha2` to v0.10 (#86)Tony Arcieri
2021-12-202021 edition bump + doc improvements; MSRV 1.56 (#80)Tony Arcieri
- Bumps both `spake2` and `srp` to Rust 2021 edition - Uses the new `doc = include_str!(...)` attribute to include README.md files in the rustdoc - Improves the README.md files, adding an initial one for `srp` - clippy fixes for Rust 1.56
2018-12-06add group name to SPAKE2 Debug implBrian Warner
2018-10-17spake2 code reorganization (#6)Artyom Pavlov