Remove invalid value from the supported list of ACME algorithms (#14737) (#14749) (#14756)

* Remove Ed25519 from the allowed ACME account key types

* Add changelog entry

Co-authored-by: Luciano Arroyo <95649169+DeLuci@users.noreply.github.com>
This commit is contained in:
Vault Automation 2026-05-12 15:23:39 -06:00 committed by GitHub
parent 7f88c2440f
commit 6b0ec80afa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 10 deletions

View file

@ -15,16 +15,15 @@ import (
)
var AllowedOuterJWSTypes = map[string]interface{}{
"RS256": true,
"RS384": true,
"RS512": true,
"PS256": true,
"PS384": true,
"PS512": true,
"ES256": true,
"ES384": true,
"ES512": true,
"EdDSA2": true,
"RS256": true,
"RS384": true,
"RS512": true,
"PS256": true,
"PS384": true,
"PS512": true,
"ES256": true,
"ES384": true,
"ES512": true,
}
var AllowedEabJWSTypes = map[string]interface{}{

3
changelog/_14737.txt Normal file
View file

@ -0,0 +1,3 @@
```release-note:bug
secrets/pki: Remove invalid value from the supported list of ACME algorithms.
```