We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For now, this code generates a panic with the text Cannot generate self-signed certificate: KeyGenerationUnavailable:
Cannot generate self-signed certificate: KeyGenerationUnavailable
let mut cert_params = CertificateParams::new(subject_alt_names); cert_params.alg = &rcgen::PKCS_RSA_SHA256; let cert = Certificate::from_params(cert_params).expect("Cannot generate self-signed certificate");
After searching, I found that note:
rcgen/rcgen/src/key_pair.rs
Lines 104 to 109 in 3c3e984
As I search for now, aws-lc-rs has RSA signing support from version 1.6.0 via PR aws/aws-lc-rs#315. Full aws-lc-rs changelog can be found here.
aws-lc-rs
Can you implement the RSA sign algorithm, please? I need this specific certificate generator.
The text was updated successfully, but these errors were encountered:
I (as just one of the maintainers) won't be able to implement this myself, but I will review a PR if you submit one.
Sorry, something went wrong.
@cpu, do you have some time for implementing this one?
@AJIOB Looks like est31 beat me to it :-) Support is in progress: #230
Successfully merging a pull request may close this issue.
For now, this code generates a panic with the text
Cannot generate self-signed certificate: KeyGenerationUnavailable
:After searching, I found that note:
rcgen/rcgen/src/key_pair.rs
Lines 104 to 109 in 3c3e984
As I search for now,
aws-lc-rs
has RSA signing support from version 1.6.0 via PR aws/aws-lc-rs#315. Fullaws-lc-rs
changelog can be found here.Can you implement the RSA sign algorithm, please? I need this specific certificate generator.
The text was updated successfully, but these errors were encountered: