summaryrefslogtreecommitdiff
path: root/crates/tor-llcrypto/semver.md
Commit message (Collapse)AuthorAgeFilesLines
* Add a new constant-time is_zero() check for RsaIdentityNick Mathewson2022-09-201-0/+2
| | | | | | | | | | | | | There are some places in the protocol where we have an all-zero RSA identity that does not truly represent a key, but rather represents an absent or unknown key. For these, it's better to use `RsaIdentity::is_zero` instead of manually checking for a set of zero bytes: it expresses the intent better, and ensures that the operation is constant-time. I am deliberately not introducing a more general IsZero trait here, or implementing is_zero for anything else: This is the only one we seem to need right now. We can generalize it later if we have to.
* Remove semver.md from arti-1.0.0Nick Mathewson2022-09-071-2/+0
|
* Define a constant for ED25519 identity length.Nick Mathewson2022-08-101-0/+2
|
* Now that versions have bumped, remove semver.md files.Nick Mathewson2022-08-011-1/+0
|
* tor-llcrypto: expose the Signer API from ed25519-dalekNick Mathewson2022-07-061-0/+1