aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-02-18use hashed key to compute MHEADmasterHimbeerserverDE
2023-02-17include salt in client proofHimbeerserverDE
2023-02-17exclude password from hash used in client proofHimbeerserverDE
2023-02-17include username in client proofHimbeerserverDE
2023-02-17clippy: needless borrowHimbeerserverDE
2023-02-17rfc compliant client proofHimbeerserverDE
2022-11-30Update Cargo.lockАртём Павлов
2022-11-30srp: bump `rand` to v0.8 (#113)Tony Arcieri
It's under `dev-dependencies` and used for tests.
2022-11-30srp: switch from `sha-1` to `sha1` (#112)Tony Arcieri
The former is deprecated. Note: `dev-dependencies` only
2022-10-05Extend Dependabot configuration to keep GitHub Actions up to date (#108)Dirk Stolle
2022-10-05Update actions used in GitHub Actions workflows to newest version (#106)Dirk Stolle
2022-10-05Fix a typo (#107)Dirk Stolle
2022-09-16build(deps): bump digest from 0.10.2 to 0.10.5 (#104)dependabot[bot]
Bumps [digest](https://github.com/RustCrypto/traits) from 0.10.2 to 0.10.5. - [Release notes](https://github.com/RustCrypto/traits/releases) - [Commits](https://github.com/RustCrypto/traits/compare/digest-v0.10.2...digest-v0.10.5) --- updated-dependencies: - dependency-name: digest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-08-02build(deps): bump generic-array from 0.14.5 to 0.14.6 (#103)dependabot[bot]
Bumps [generic-array](https://github.com/fizyk20/generic-array) from 0.14.5 to 0.14.6. - [Release notes](https://github.com/fizyk20/generic-array/releases) - [Changelog](https://github.com/fizyk20/generic-array/blob/master/CHANGELOG.md) - [Commits](https://github.com/fizyk20/generic-array/commits) --- updated-dependencies: - dependency-name: generic-array dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-02-11update Cargo.lockАртём Павлов [Artyom Pavlov]
2022-01-28build(deps): bump hkdf from 0.12.0 to 0.12.2 (#94)dependabot[bot]
Bumps [hkdf](https://github.com/RustCrypto/KDFs) from 0.12.0 to 0.12.2. - [Release notes](https://github.com/RustCrypto/KDFs/releases) - [Commits](https://github.com/RustCrypto/KDFs/compare/hkdf-v0.12.0...hkdf-v0.12.2) --- updated-dependencies: - dependency-name: hkdf dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-01-22spake2 v0.3.1 (#92)Tony Arcieri
2022-01-22spake2: refactor internals (#91)Tony Arcieri
Splits the crate apart into multiple modules
2022-01-22spake2: rustdoc fixupTony Arcieri
2022-01-22spake2 v0.3.0 (#90)Tony Arcieri
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: getrandom feature (#88)Tony Arcieri
Makes `getrandom` an optional on-by-default feature Adds CI for `thumbv7em-none-eabi` targets
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
2022-01-22spake2: bump `curve25519-dalek` to v3.0; `rand_core` => v0.5 (#85)Tony Arcieri
This is a continuation of #33. It bumps `curve25519-dalek` to the latest stable release and replaces the `rand` crate with the version of `rand_core` which is compatible with `curve25519-dalek`: v0.5 (which is still a version behind)
2022-01-22Bump generic-array from 0.14.4 to 0.14.5 (#82)dependabot[bot]
Bumps [generic-array](https://github.com/fizyk20/generic-array) from 0.14.4 to 0.14.5. - [Release notes](https://github.com/fizyk20/generic-array/releases) - [Changelog](https://github.com/fizyk20/generic-array/blob/master/CHANGELOG.md) - [Commits](https://github.com/fizyk20/generic-array/commits) --- updated-dependencies: - dependency-name: generic-array dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-01-22README.md: remove outdated MSRV docsTony Arcieri
2022-01-22srp v0.6.0 (#84)Tony Arcieri
2022-01-22srp: rebuild library (#79)Josh Brown
Complete rewrite of the SRP library. Includes many improvements over the old library: - Improved file and code organization - Access to individual SRP computations - Consistent sever and client API - Simpler API - Improved documentation with tests in documentation - New tests for compatibility with the RFC - Bumps dependencies - Timing safe verification comparisons - Modernized error handling
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
2021-12-20srp: replace custom powm with modpow (#78)Josh Brown
2021-09-13Bump num-bigint from 0.4.1 to 0.4.2 (#68)dependabot[bot]
Bumps [num-bigint](https://github.com/rust-num/num-bigint) from 0.4.1 to 0.4.2. - [Release notes](https://github.com/rust-num/num-bigint/releases) - [Changelog](https://github.com/rust-num/num-bigint/blob/master/RELEASES.md) - [Commits](https://github.com/rust-num/num-bigint/compare/num-bigint-0.4.1...num-bigint-0.4.2) --- updated-dependencies: - dependency-name: num-bigint dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-10Bump sha2 from 0.9.7 to 0.9.8 (#70)dependabot[bot]
2021-09-08Bump sha2 from 0.9.6 to 0.9.7 (#69)dependabot[bot]
2021-08-30Bump num-bigint from 0.4.0 to 0.4.1 (#67)dependabot[bot]
Bumps [num-bigint](https://github.com/rust-num/num-bigint) from 0.4.0 to 0.4.1. - [Release notes](https://github.com/rust-num/num-bigint/releases) - [Changelog](https://github.com/rust-num/num-bigint/blob/master/RELEASES.md) - [Commits](https://github.com/rust-num/num-bigint/compare/num-bigint-0.4.0...num-bigint-0.4.1) --- updated-dependencies: - dependency-name: num-bigint dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-08-27Bump sha2 from 0.9.5 to 0.9.6 (#66)dependabot[bot]
Bumps [sha2](https://github.com/RustCrypto/hashes) from 0.9.5 to 0.9.6. - [Release notes](https://github.com/RustCrypto/hashes/releases) - [Commits](https://github.com/RustCrypto/hashes/compare/sha2-v0.9.5...sha2-v0.9.6) --- updated-dependencies: - dependency-name: sha2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-08-27Bump sha-1 from 0.9.7 to 0.9.8 (#65)dependabot[bot]
Bumps [sha-1](https://github.com/RustCrypto/hashes) from 0.9.7 to 0.9.8. - [Release notes](https://github.com/RustCrypto/hashes/releases) - [Commits](https://github.com/RustCrypto/hashes/compare/sha-1-v0.9.7...sha-1-v0.9.8) --- updated-dependencies: - dependency-name: sha-1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-08-25Cargo.lock: bump dependencies (#64)Tony Arcieri
2021-08-25spake2: bump `hkdf` dependency to v0.11 (#63)Tony Arcieri
2021-07-24Fix typo over -> other (#60)Sosthene-Guedon
2021-07-19Bump sha-1 from 0.9.6 to 0.9.7 (#59)dependabot[bot]
Bumps [sha-1](https://github.com/RustCrypto/hashes) from 0.9.6 to 0.9.7. - [Release notes](https://github.com/RustCrypto/hashes/releases) - [Commits](https://github.com/RustCrypto/hashes/compare/sha-1-v0.9.6...sha-1-v0.9.7) --- updated-dependencies: - dependency-name: sha-1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-21srp: fix typos in docstrings (#58)Luca Bruno
This fixes a few minor typos in docstrings.
2021-05-12Bump sha-1 from 0.9.4 to 0.9.6 (#56)dependabot[bot]
Bumps [sha-1](https://github.com/RustCrypto/hashes) from 0.9.4 to 0.9.6. - [Release notes](https://github.com/RustCrypto/hashes/releases) - [Commits](https://github.com/RustCrypto/hashes/compare/sha-1-v0.9.4...sha-1-v0.9.6) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-04-30Cargo.lock: bump dependencies (#52)Tony Arcieri
2021-04-30Bump num-bigint from 0.2.6 to 0.4.0 (#46)dependabot[bot]
Bumps [num-bigint](https://github.com/rust-num/num-bigint) from 0.2.6 to 0.4.0. - [Release notes](https://github.com/rust-num/num-bigint/releases) - [Changelog](https://github.com/rust-num/num-bigint/blob/master/RELEASES.md) - [Commits](https://github.com/rust-num/num-bigint/compare/num-bigint-0.2.6...num-bigint-0.4.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-04-30Bump generic-array from 0.12.3 to 0.14.4 (#45)dependabot[bot]
Bumps [generic-array](https://github.com/fizyk20/generic-array) from 0.12.3 to 0.14.4. - [Release notes](https://github.com/fizyk20/generic-array/releases) - [Changelog](https://github.com/fizyk20/generic-array/blob/master/CHANGELOG.md) - [Commits](https://github.com/fizyk20/generic-array/compare/0.12.3...0.14.4) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-04-30Add Dependabot config (#43)Tony Arcieri
2021-04-30Migrate to GitHub Actions (#42)Tony Arcieri
Uses the standard boilerplate we've been using for other projects
2021-02-12Edit badgesArtyom Pavlov
2020-10-07srp v0.5.0 (#38)Tony Arcieri