From ab5f916bd3691b3668b30a854b9347e3982de5b8 Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Mon, 29 Aug 2022 20:02:43 -0700 Subject: [PATCH] Define ErrorBadAttestationStatement --- acme/errors.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/acme/errors.go b/acme/errors.go index 416eaf01..1cc8af11 100644 --- a/acme/errors.go +++ b/acme/errors.go @@ -174,6 +174,11 @@ var ( details: "The JWS was signed with an algorithm the server does not support", status: 400, }, + ErrorBadAttestationStatement: { + typ: officialACMEPrefix + ErrorBadNonceType.String(), + details: "Attestation statement cannot be verified", + status: 400, + }, ErrorCaaType: { typ: officialACMEPrefix + ErrorCaaType.String(), details: "Certification Authority Authorization (CAA) records forbid the CA from issuing a certificate",