summaryrefslogtreecommitdiff
path: root/crates/tor-cert/semver.md
Commit message (Collapse)AuthorAgeFilesLines
* tor-cert: Add new functions to replace KeyUnknownCert::check_key.Nick Mathewson2023-05-161-0/+2
| | | | | | | These should have a cleaner API than check_key, and be easier to understand. Part of #759
* Remove semver.md files now that 1.1.2 is out.Nick Mathewson2023-02-281-2/+0
|
* tor-cert: Implement Timebound for Ed25519CertNick Mathewson2023-02-071-0/+2
| | | | | This allows us to run `is_valid_at` and friends on the certificate itself, which we will use soon in hsdesc validity checks.
* Now that versions have bumped, remove semver.md files.Nick Mathewson2022-08-011-2/+0
|
* change usage of PublicKey to Ed25519 in tor-certtrinity-1686a2022-07-231-0/+1
| | | | and propagate to other affected crates
* change check_key to take a Option<&_> instead of &Option<_>trinity-1686a2022-07-231-0/+1
|
* Remove semver.md files now that 0.5.0 is outNick Mathewson2022-06-241-1/+0
|
* tor-proto: split and elaborate tor_bytes::Error instancesNick Mathewson2022-06-231-0/+1
Some of these were for decoding particular objects (we now say what kind of objects), and some were unrelated tor_cert errors that for some reason we had shoved into a tor_bytes::Error. There is now a separate tor_cert::CertError type, independent from tor_cert's use of `tor_bytes::Error` for parsing errors.