Upped MAX_TOKEN_LENGTH to 5000; Fixes #30

This commit is contained in:
gholt 2012-05-03 21:44:20 +00:00
parent 2d00f7a5a1
commit 9e6caa6ea3

View File

@ -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):