aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-12-18format everything with rustfmtBrian Warner
2017-12-05update to curve25519-dalek-0.14Brian Warner
2017-11-29(cargo-release) start next development iteration 0.0.4-alpha.0Brian Warner
2017-11-29(cargo-release) version 0.0.3Brian Warner
2017-11-29update to hkdf-0.3 and sha2-0.7 (new Digest API)Brian Warner
2017-11-25update to curve25519-dalek 0.13Brian Warner
2017-11-25travis: fix test invocationBrian Warner
2017-11-25travis: add OS-XBrian Warner
2017-11-15README: add badge for codecov.ioBrian Warner
2017-11-15update to hex-0.3Brian Warner
2017-11-01srp v0.2.4Артём Павлов [Artyom Pavlov]
2017-11-01Fix a typo (#2)quininer
2017-10-12update to the curve25519-dalek 0.12 APIBrian Warner
2017-10-08add test coverage (cargo-tarpaulin) and codecov.io reportingBrian Warner
2017-09-21release 0.0.2, still preliminaryBrian Warner
2017-09-21add benchmarks: run 'cargo bench'Brian Warner
2017-09-21comment out debug messagesBrian Warner
2017-09-21move from (unmaintained) rust-crypto to RustCrypto ('sha2' crate)Brian Warner
Also upgrade to curve25519-dalek 0.11, hkdf-0.2, refine error types, add more tests.
2017-09-04hush remaining lints, thanks clippy for the suggestionsBrian Warner
2017-09-04fix several clippy lintsBrian Warner
2017-08-18Clippy updatesАртём Павлов [Artyom Pavlov]
2017-08-17Updated srp docsnewpavlov
2017-08-14Fixed CI badge for SRPАртём Павлов [Artyom Pavlov]
2017-08-14Readme udpateАртём Павлов [Artyom Pavlov]
2017-08-14PAKE repository reorganizationАртём Павлов [Artyom Pavlov]
2017-08-14doc fixesАртём Павлов [Artyom Pavlov]
2017-08-14v0.2.0Артём Павлов [Artyom Pavlov]
2017-08-13Docs updateАртём Павлов [Artyom Pavlov]
2017-08-13Pinning dependency versionsАртём Павлов [Artyom Pavlov]
2017-08-13Cargo.toml updatesАртём Павлов [Artyom Pavlov]
2017-08-13typo fixАртём Павлов [Artyom Pavlov]
2017-08-13First commitАртём Павлов [Artyom Pavlov]
2017-08-01Merge PR1: update docsBrian Warner
2017-08-01Add badges for crates.io and docs.rs to the README.Isis Lovecruft
2017-08-01Link to https://docs.rs/spake2 for doc builds.Isis Lovecruft
2017-07-31Cargo.toml: fix the travis badge URLBrian Warner
2017-07-31prep for preliminary 0.0.1 releaseBrian Warner
* add Cargo.toml metadata * add travis badge * exclude .gitignore
2017-05-30fix all tests, refactor some code for easier testingBrian Warner
2017-05-25fix incorrect testsBrian Warner
the messages now match what I expect, but the final key does not. Next step is to compare transcripts.
2017-05-25fix test_sizes: needed to strip side-byte before transcript hashBrian Warner
2017-05-25slow progress, got password-to-scalar workingBrian Warner
* ported spake2.py password-to-scalar function, since dalek's built-in one does it differently * added "side" byte in messages: emit in start(), strip+check in input() * rewrote transcript-hashing (since transcript is fixed-size) This adds a lot of debug prints, and moves a bunch of test-only code into the top level, all of which will need to be undone eventually.
2017-05-24change the nature of the failure. still wrong, but better wrong!Brian Warner
2017-05-24improvements for tests, which of course failBrian Warner
2017-05-24README: add travis badgeBrian Warner
2017-05-24add travis-CIBrian Warner
2017-05-24add support for symmetric modeBrian Warner
2017-05-24README: warn people away from thinking this is ready for useBrian Warner
2017-05-24add github-provided boilerplate: LICENSE, README, .gitignoreBrian Warner
2017-05-24fix blinding factors, implement full algorithmBrian Warner
2017-05-23more progress, make some dummy implementations pass testsBrian Warner