Package wtf :: Package app :: Package services :: Package session_storage :: Module sharedance :: Class SessionCookieCodec
[hide private]
[frames] | no frames]

Class SessionCookieCodec

source code

object --+
         |
        SessionCookieCodec

Session ID storing cookie
Instance Methods [hide private]
 
__init__(self, signkey)
Initialization
source code
 
encode(self, value)
Identity encoding (str->str) with signature
source code
 
decode(self, value)
Identity decoding (str->str) with integrity checking
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  __implements__ = [<class 'wtf.httputil.CookieCodecInterface'>]
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, signkey)
(Constructor)

source code 
Initialization
Parameters:
  • signkey (str) - Signation key (or None)
Overrides: object.__init__