Skip to content

Commit

Permalink
Bump rsa to 0.9.0 (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
baloo committed May 3, 2023
1 parent 0728144 commit 8cf18d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ p384 = "0.13"
pbkdf2 = { version = "0.12", default-features = false, features = ["hmac"] }
pcsc = "2.3.1"
rand_core = { version = "0.6", features = ["std"] }
rsa = "=0.9.0-pre.2"
rsa = "0.9"
secrecy = "0.8"
sha1 = { version = "0.10", features = ["oid"] }
sha2 = { version = "0.10", features = ["oid"] }
Expand Down
4 changes: 2 additions & 2 deletions src/certificate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ use log::error;
use num_bigint_dig::BigUint;
use p256::NistP256;
use p384::NistP384;
use rsa::{PublicKeyParts, RsaPublicKey};
use rsa::{traits::PublicKeyParts, RsaPublicKey};
use sha2::{Digest, Sha256};
use std::fmt::Display;
use std::{fmt, ops::DerefMut};
Expand Down Expand Up @@ -675,7 +675,7 @@ mod read_pki {

mod write_pki {
use cookie_factory::{SerializeFn, WriteContext};
use rsa::{BigUint, PublicKeyParts, RsaPublicKey};
use rsa::{traits::PublicKeyParts, BigUint, RsaPublicKey};
use std::io::Write;
use x509::der::write::{der_integer, der_sequence};

Expand Down

0 comments on commit 8cf18d2

Please sign in to comment.