Replies: 2 comments 1 reply
-
What exactly do you mean by "the default key type generated by the ACME server"? Currently, the certificate for the In the client side, if you're using step ca certificate --kty OKP --provisioner acme localhost localhost.crt localhost.key Other ACME clients might have other options to support different keys or accounts. It is also possible to change the root and/or intermediates with an Ed25519 key, but currently, you need to create those with |
Beta Was this translation helpful? Give feedback.
-
Thanks, @maraino! I was expecting the server cert to be as the same kind as the intermediate cert, and I was also expecting those configurations in
I've opened this issue to allow changing the step-ca server's certificate type.
Is it possible to restrict the certificate types issued by the CA? Can the default issued certificate type be configured on the server side instead of configuring it in every single client? |
Beta Was this translation helpful? Give feedback.
-
I've tried to define the default key type generated by the ACME server the same way as the JWK provisioner is configured in
ca.json
.However, the configuration is not picked by the provisioner, as I can verify running:
I also tried to add a global setting to set
"kty": "OKP"
and"crv": "Ed25519"
, and I've tried the same thing underoptions
->x509
. None worked.How to define the default key type in
ca.json
? Is this option currently available only for some kind of provisioners? Is there any other method to set this option on the server side?Beta Was this translation helpful? Give feedback.
All reactions