We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Now VaaS support generating certificates using EC keys, and creating CIT that accepts EC keys.
for requesting a CIT or updating a CIT:
{ "keyTypes": [ { "keyType": "RSA", "keyLengths": [ 1024, 2048, 3072, 4096 ] }, { "keyType": "EC", "keyCurves": [ "P256", "P384", "P521", "ED25519" ] } ],
and for requesting a certificate:
{ "csrAttributes": { "keyTypeParameters": { "keyType": "EC", "keyLength": null, "keyCurve": "P256" }
Chages are needed on Vcert to support these new behavior.
The text was updated successfully, but these errors were encountered:
marcos-albornoz
No branches or pull requests
Now VaaS support generating certificates using EC keys, and creating CIT that accepts EC keys.
for requesting a CIT or updating a CIT:
{
"keyTypes": [
{
"keyType": "RSA",
"keyLengths": [
1024,
2048,
3072,
4096
]
},
{
"keyType": "EC",
"keyCurves": [
"P256",
"P384",
"P521",
"ED25519"
]
}
],
and for requesting a certificate:
{
"csrAttributes": {
"keyTypeParameters": {
"keyType": "EC",
"keyLength": null,
"keyCurve": "P256"
}
Chages are needed on Vcert to support these new behavior.
The text was updated successfully, but these errors were encountered: