From d7b917e4c003623499dfcb244e1e386e22511b5c Mon Sep 17 00:00:00 2001 From: Dale Seo <5466341+DaleSeo@users.noreply.github.com> Date: Wed, 17 Jun 2026 12:42:42 -0400 Subject: [PATCH] docs: fix SEP-2243 base64 sentinel case-sensitivity contradiction --- docs/seps/2243-http-standardization.mdx | 2 +- seps/2243-http-standardization.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/seps/2243-http-standardization.mdx b/docs/seps/2243-http-standardization.mdx index 45b29718b..7670db93e 100644 --- a/docs/seps/2243-http-standardization.mdx +++ b/docs/seps/2243-http-standardization.mdx @@ -770,7 +770,7 @@ This section defines edge cases that conformance tests MUST cover to ensure inte | Invalid Base64 characters | `=?base64?SGVs!!!bG8=?=` | Server MUST reject with 400 and error code `-32001`; Intermediary MAY reject with 400 status code | | Missing prefix | `SGVsbG8=` | Server treats as literal value, not Base64 | | Missing suffix | `=?base64?SGVsbG8=` | Server treats as literal value, not Base64 | -| Malformed wrapper | `=?BASE64?SGVsbG8=?=` | Server MUST accept (case-insensitive prefix) | +| Non-lowercase prefix | `=?BASE64?SGVsbG8=?=` | Server treats as literal value, not Base64 | #### Null and Missing Values diff --git a/seps/2243-http-standardization.md b/seps/2243-http-standardization.md index 2faf69583..ac908d600 100644 --- a/seps/2243-http-standardization.md +++ b/seps/2243-http-standardization.md @@ -754,7 +754,7 @@ This section defines edge cases that conformance tests MUST cover to ensure inte | Invalid Base64 characters | `=?base64?SGVs!!!bG8=?=` | Server MUST reject with 400 and error code `-32001`; Intermediary MAY reject with 400 status code | | Missing prefix | `SGVsbG8=` | Server treats as literal value, not Base64 | | Missing suffix | `=?base64?SGVsbG8=` | Server treats as literal value, not Base64 | -| Malformed wrapper | `=?BASE64?SGVsbG8=?=` | Server MUST accept (case-insensitive prefix) | +| Non-lowercase prefix | `=?BASE64?SGVsbG8=?=` | Server treats as literal value, not Base64 | #### Null and Missing Values