From 9e6caa6ea3606eebd6f44216cb26165d5afd1f65 Mon Sep 17 00:00:00 2001 From: gholt Date: Thu, 3 May 2012 21:44:20 +0000 Subject: [PATCH] Upped MAX_TOKEN_LENGTH to 5000; Fixes #30 --- swauth/authtypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swauth/authtypes.py b/swauth/authtypes.py index 0334393..90aad72 100644 --- a/swauth/authtypes.py +++ b/swauth/authtypes.py @@ -38,7 +38,7 @@ import hashlib #: Maximum length any valid token should ever be. -MAX_TOKEN_LENGTH = 256 +MAX_TOKEN_LENGTH = 5000 class Plaintext(object):