Switch ed25519 keytype to ec keytype to make the fips build happy. (#18889)

This commit is contained in:
Kit Haines 2023-01-30 09:08:25 -05:00 committed by GitHub
parent 61c77c81fa
commit e8c5f2aea0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ func createComplicatedIssuerSetUpWithIssueIntermediate(t *testing.T, client *api
"pki", "issue", "-format=json", "-issuer_name=intX2",
"pki-newroot/issuer/rootX3",
"pki-int/",
"key_type=ed25519",
"key_type=ec",
"common_name=Int X2",
"ttl=3650d",
}

View File

@ -313,7 +313,7 @@ func createComplicatedIssuerSetUp(t *testing.T, client *api.Client) {
// Intermediate X2
int2CsrResp, err := client.Logical().Write("pki-int/intermediate/generate/internal", map[string]interface{}{
"key_type": "ed25519",
"key_type": "ec",
"common_name": "Int X2",
"ttl": "3650d",
})