Skip to content

Commit 472c98d

Browse files
authored
v0.10.0-rc.5 (#570)
Also fixes #564
1 parent 8b6d423 commit 472c98d

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

Cargo.lock

Lines changed: 15 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rsa"
3-
version = "0.10.0-rc.4"
3+
version = "0.10.0-rc.5"
44
authors = ["RustCrypto Developers", "dignifiedquire <[email protected]>"]
55
edition = "2021"
66
description = "Pure Rust RSA implementation"

src/key.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ impl RsaPrivateKey {
365365
precomputed: None,
366366
};
367367

368-
// Alaways validate the key, to ensure precompute can't fail
368+
// Always validate the key, to ensure precompute can't fail
369369
k.validate()?;
370370

371371
// Precompute when possible, ignore error otherwise.

0 commit comments

Comments
 (0)