mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-10 17:32:29 -04:00
* 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:
parent
7f88c2440f
commit
6b0ec80afa
2 changed files with 12 additions and 10 deletions
|
|
@ -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
3
changelog/_14737.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
secrets/pki: Remove invalid value from the supported list of ACME algorithms.
|
||||
```
|
||||
Loading…
Reference in a new issue