You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
certEnrollmentError (RustErrorIatError) =StdError$Wai.mkError status400 "client-token-bad-iat""(iat) claim in DPoP token is not earlier of now (with max_skew_secs leeway)"
193
193
certEnrollmentError (RustErrorMissingExpError) =StdError$Wai.mkError status400 "client-token-exp-missing""(exp) claim is absent in DPoP token"
194
194
certEnrollmentError (RustErrorExpMismatchError) =StdError$Wai.mkError status400 "client-token-exp-too-large""(exp) claim in DPoP token is larger than supplied [max_expiration]"
195
-
certEnrollmentError (RustErrorExpError) =StdError$Wai.mkError status400 "client-token-exp-too-small""(exp) claim in DPoP token is sooner than now (with [max_skew_secs] leeway)"
195
+
certEnrollmentError (RustErrorExpired) =StdError$Wai.mkError status400 "client-token-exp-too-small""(exp) claim in DPoP token is sooner than now (with [max_skew_secs] leeway)"
196
+
certEnrollmentError (RustErrorInvalidUserId) =StdError$Wai.mkError status400 "invalid-user-id""userId supplied across the FFI is invalid"
197
+
certEnrollmentError (RustErrorNotYetValid) =StdError$Wai.mkError status400 "not-yet-valid""Client DPoP token 'nbf' claim is in the future"
198
+
certEnrollmentError (RustErrorJwtSimpleError) =StdError$Wai.mkError status400 "jwt-simple-error""Bubbling up errors"
199
+
certEnrollmentError (RustErrorRandError) =StdError$Wai.mkError status400 "rand-error""Bubbling up errors"
200
+
certEnrollmentError (RustErrorSec1Error) =StdError$Wai.mkError status400 "sec1-error""Bubbling up errors"
201
+
certEnrollmentError (RustErrorUrlParseError) =StdError$Wai.mkError status400 "url-parse-error""Bubbling up errors"
202
+
certEnrollmentError (RustErrorUuidError) =StdError$Wai.mkError status400 "uuid-error""Bubbling up errors"
203
+
certEnrollmentError (RustErrorUtf8Error) =StdError$Wai.mkError status400 "utf8-error""Bubbling up errors"
204
+
certEnrollmentError (RustErrorBase64DecodeError) =StdError$Wai.mkError status400 "base64-decode-error""Bubbling up errors"
205
+
certEnrollmentError (RustErrorJsonError) =StdError$Wai.mkError status400 "json-error""Bubbling up errors"
206
+
certEnrollmentError (RustErrorInvalidJsonPath) =StdError$Wai.mkError status400 "invalid-json-path""Bubbling up errors"
207
+
certEnrollmentError (RustErrorJsonPathError) =StdError$Wai.mkError status400 "json-path-error""Bubbling up errors"
208
+
certEnrollmentError (RustErrorInvalidJwkThumbprint) =StdError$Wai.mkError status400 "invalid-jwk-thumbprint""Bubbling up errors"
209
+
certEnrollmentError (RustErrorMissingDpopHeader) =StdError$Wai.mkError status400 "missing-dpop-header""Bubbling up errors"
210
+
certEnrollmentError (RustErrorMissingIssuer) =StdError$Wai.mkError status400 "missing-issuer""Bubbling up errors"
211
+
certEnrollmentError (RustErrorDpopChallengeMismatch) =StdError$Wai.mkError status400 "dpop-challenge-mismatch""Bubbling up errors"
212
+
certEnrollmentError (RustErrorDpopHtuMismatch) =StdError$Wai.mkError status400 "dpop-htu-mismatch""Bubbling up errors"
213
+
certEnrollmentError (RustErrorDpopHtmMismatch) =StdError$Wai.mkError status400 "dpop-htm-mismatch""Bubbling up errors"
214
+
certEnrollmentError (RustErrorInvalidBackendKeys) =StdError$Wai.mkError status400 "invalid-backend-keys""Bubbling up errors"
215
+
certEnrollmentError (RustErrorInvalidClientId) =StdError$Wai.mkError status400 "invalid-client-id""Bubbling up errors"
216
+
certEnrollmentError (RustErrorUnsupportedApiVersion) =StdError$Wai.mkError status400 "unsupported-api-version""Bubbling up errors"
217
+
certEnrollmentError (RustErrorUnsupportedScope) =StdError$Wai.mkError status400 "unsupported-scope""Bubbling up errors"
196
218
certEnrollmentError NonceNotFound=StdError$Wai.mkError status400 "client-token-bad-nonce""The client sent an unacceptable anti-replay nonce"
197
219
certEnrollmentError MisconfiguredRequestUrl=StdError$Wai.mkError status500 "misconfigured-request-url""The request url cannot be derived from optSettings.setFederationDomain in brig.yaml"
198
220
certEnrollmentError KeyBundleError=StdError$Wai.mkError status404 "no-server-key-bundle""The key bundle required for the certificate enrollment process could not be found"
0 commit comments