summaryrefslogtreecommitdiff
path: root/securecookie.go
diff options
context:
space:
mode:
Diffstat (limited to 'securecookie.go')
-rw-r--r--securecookie.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/securecookie.go b/securecookie.go
index ab708a3..97f0847 100644
--- a/securecookie.go
+++ b/securecookie.go
@@ -118,6 +118,8 @@ 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
@@ -138,7 +140,7 @@ func New(hashKey, blockKey []byte) *SecureCookie {
blockKey: blockKey,
hashFunc: sha256.New,
maxAge: 86400 * 30,
- maxLength: 4096,
+ maxLength: DefaultMaxLength,
sz: GobEncoder{},
}
if len(hashKey) == 0 {