LetsEncrypt's "Boulder" server, the backend for processing CSRs, apparently uses
and specifically
the upstream Golang x509 package ... to process CSRs.
If a CSR submitted to LetsEncrypt service references a PrivKey that has ec parameters explicitly encoded, e.g.,
openssl ecparam \
-genkey \
-param_enc explicit \
...
, perfectly valid under Openssl, the Boulder server process fails with a server error
Err: asn1: structure error: tags don't match (16 vs {class:0 tag:13 length:45 isCompound:true}) {optional:false explicit:false application:false defaultValue:<nil> tag:<nil> stringType:0 timeType:0 set:false omitEmpty:false} certificateRequest @2
Req: (*x509.CertificateRequest)(nil)
This is claimed as a result of GoLang's X509 pkg lacking support
The upstream x509 library does not support explicit parameter encoding
Despite their befuddling insistence that
regardless of whether it is added there we likely won't support it in Boulder.
it'll be useful for GoLang's X509 pkg to implement feature parity with Openssl in supporting the explicit parameter encoding
More detail's provided in the original bug post there
Certbot “Exiting abnormally” if CSR uses PrivKey with ec parameters encoded (=param_enc explicit)
https://community.letsencrypt.org/t/certbot-exiting-abnormally-if-csr-uses-privkey-with-ec-parameters-encoded-param-enc-explicit/18814
I can provide additional info here as requested
LetsEncrypt's "Boulder" server, the backend for processing CSRs, apparently uses
and specifically
If a CSR submitted to LetsEncrypt service references a PrivKey that has ec parameters explicitly encoded, e.g.,
, perfectly valid under Openssl, the Boulder server process fails with a server error
This is claimed as a result of GoLang's X509 pkg lacking support
Despite their befuddling insistence that
it'll be useful for GoLang's X509 pkg to implement feature parity with Openssl in supporting the explicit parameter encoding
More detail's provided in the original bug post there
Certbot “Exiting abnormally” if CSR uses PrivKey with ec parameters encoded (=param_enc explicit)
https://community.letsencrypt.org/t/certbot-exiting-abnormally-if-csr-uses-privkey-with-ec-parameters-encoded-param-enc-explicit/18814
I can provide additional info here as requested