Commit 8a282d85 authored by Kunihiko Sakamoto's avatar Kunihiko Sakamoto Committed by Commit Bot

Signed exchange: Increase the header size limit to 512kB

Spec side change: https://github.com/WICG/webpackage/pull/261

Bug: 803774
Change-Id: I0d0aa289b6f991b3cb09b2f53f6b1fbf752d2bbd
Reviewed-on: https://chromium-review.googlesource.com/1142846Reviewed-by: default avatarKinuko Yasuda <kinuko@chromium.org>
Commit-Queue: Kunihiko Sakamoto <ksakamoto@chromium.org>
Cr-Commit-Position: refs/heads/master@{#576371}
parent bde46cd3
...@@ -14,7 +14,7 @@ namespace { ...@@ -14,7 +14,7 @@ namespace {
constexpr char kSignedExchangeMagic[] = "sxg1-b1"; constexpr char kSignedExchangeMagic[] = "sxg1-b1";
constexpr size_t kMaximumSignatureHeaderFieldLength = 16 * 1024; constexpr size_t kMaximumSignatureHeaderFieldLength = 16 * 1024;
constexpr size_t kMaximumCBORHeaderLength = 16 * 1024; constexpr size_t kMaximumCBORHeaderLength = 512 * 1024;
} // namespace } // namespace
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment