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
Regression with OpenSSL 1.1.0 #167
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issuing new Let's Encrypt certificates (or renewing ones past the reauthorization window) fails when running OpenSSL 1.1.0. I get the error:
The problem is in line 72 where acme_tiny.py extracts the CN from the certificate using the regex:
Unfortunately OpenSSL changed the format of
openssl req -text -noout
in 1.1.0 to add extraneous spaces around the=
inCN=
:The fix is to change line 72 to:
The text was updated successfully, but these errors were encountered: