-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate parsing of unencrypted PKCS#8 private keys to Rust #12296
base: main
Are you sure you want to change the base?
Conversation
81ab411
to
66e7aec
Compare
paramiko failures are due to paramiko/paramiko#2490 (probably) |
test cases needed to coverage:
|
73d5f37
to
c0091ec
Compare
}; | ||
let Some((cipher_algorithm, iv)) = dek_info.split_once(',') else { | ||
todo!() | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@alex , could You please make this code (81-86) compatible with Rust 1.63? let...else is unstable in 1.63... :-(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We've had an MSRV of 1.65 since cryptography 43.0.0 in July of last year, we're not going to revert that absent exceptional circumstances
Test cases we need:
|
No description provided.