AD CS - Public key does not meet the minimum size required (CERTSRV_E_KEY_LENGTH) #176
-
I'm trying to set up And it seems like
Where I fail is in my CA template itself, clearly. Any idea what kind of settings are needed for an ACME template on AD CS? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Which acme-client are you using? I remember a similar issue from my own testing which was related to the fact that the acme-client did use ecc keys with a very short key-length which got rejected by AD CS template. Switching to RSA-Keys with key-length of 2048 bits may help (check the documentation of your acme-client for instructions) |
Beta Was this translation helpful? Give feedback.
-
I was testing with |
Beta Was this translation helpful? Give feedback.
ECDSA provide similar security than RSA with shorter key-length. Thus, it preferred by all modern acme-clients. Check here for furhter information
You can to switch to RSA by adding
--keylength 2048
to your acme.sh command. Give it a try and let me know if it works...