Skip to content

Commit

Permalink
Bump rsa from 0.8.2 to 0.9.0 (#25377)
Browse files Browse the repository at this point in the history
* Bump rsa from 0.8.2 to 0.9.0

Bumps [rsa](https://github.com/RustCrypto/RSA) from 0.8.2 to 0.9.0.
- [Release notes](https://github.com/RustCrypto/RSA/releases)
- [Changelog](https://github.com/RustCrypto/RSA/blob/master/CHANGELOG.md)
- [Commits](RustCrypto/RSA@v0.8.2...v0.9.0)

---
updated-dependencies:
- dependency-name: rsa
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* updates imports for rsa 0.9.0

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Isaiah Becker-Mayer <[email protected]>
  • Loading branch information
dependabot[bot] and Isaiah Becker-Mayer authored May 1, 2023
1 parent 97db758 commit d0db408
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 29 deletions.
54 changes: 27 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/srv/desktop/rdp/rdpclient/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ num-derive = "0.3.3"
num-traits = "0.2.15"
rand = { version = "0.8.5", features = ["getrandom"] }
rand_chacha = "0.3.1"
rsa = "0.8.2"
rsa = "0.9.0"
rdp-rs = { git = "https://github.com/gravitational/rdp-rs", rev = "75eb6a30b83e7152ee6213964b5ac6e783304840" }
uuid = { version = "1.3.1", features = ["v4"] }
utf16string = "0.2.0"
Expand Down
3 changes: 2 additions & 1 deletion lib/srv/desktop/rdp/rdpclient/src/piv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ use iso7816::response::Status;
use iso7816_tlv::ber::{Tag, Tlv, Value};
use rdp::model::error::*;
use rsa::pkcs1::DecodeRsaPrivateKey;
use rsa::{BigUint, PublicKeyParts, RsaPrivateKey};
use rsa::traits::{PrivateKeyParts, PublicKeyParts};
use rsa::{BigUint, RsaPrivateKey};
use std::convert::TryFrom;
use std::fmt::Write as _;
use std::io::{Cursor, Read};
Expand Down

0 comments on commit d0db408

Please sign in to comment.