From 3faf6fc167dd8a00d6516ad3ad70012869348603 Mon Sep 17 00:00:00 2001 From: Hank Shen Date: Wed, 6 Dec 2023 11:05:58 +0800 Subject: Revert "Update securecookie.go" This reverts commit f14b1ebae207764cbbbfe6ca658aaf4873522948. --- securecookie.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'securecookie.go') diff --git a/securecookie.go b/securecookie.go index 97f0847..ab708a3 100644 --- a/securecookie.go +++ b/securecookie.go @@ -118,8 +118,6 @@ type Codec interface { Decode(name, value string, dst interface{}, maxAge ...int) error } -var DefaultMaxLength = 1024 * 1024 // 1M - // New returns a new SecureCookie. // // hashKey is required, used to authenticate values using HMAC. Create it using @@ -140,7 +138,7 @@ func New(hashKey, blockKey []byte) *SecureCookie { blockKey: blockKey, hashFunc: sha256.New, maxAge: 86400 * 30, - maxLength: DefaultMaxLength, + maxLength: 4096, sz: GobEncoder{}, } if len(hashKey) == 0 { -- cgit v1.2.3