-
-
Notifications
You must be signed in to change notification settings - Fork 81
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
Private key invalid #96
Comments
Did you find a solution yet ? The method should handle rsa private keys and it is testet with real life examples from openssl. Therefore some questions :
Regards |
No, i didn't find a solution. I commented on my control in my app. |
This may be fixed with the latest release 5.8.1 as it contains the latest pointycastle version, that contains some bugfixes in the ans1 parsing. |
I have this error
type 'ASN1OctetString' is not a subtype of type 'ASN1Integer' in type cast
when i try to control validity of a private keyI create my certificate with certbot CLI
certbot certonly --manual --domain example.com --preferred-challenges dns
This command will request a certificate to Let's Encrypt about example.com and will require to prove the ownership of the domain with a DNS challenge.
The certificate can be found at:
/etc/letsencrypt/live/example.com/cert.pem
and the key at:/etc/letsencrypt/live/example.com/privatekey.pem
To control my private key, i used this method
And it seems not working in the line
Any idea ?
Thx
The text was updated successfully, but these errors were encountered: