X-Git-Url: http://dolda2000.com/gitweb/?p=wrw.git;a=blobdiff_plain;f=wrw%2Fsession.py;fp=wrw%2Fsession.py;h=3185b0bbf1b12bc22ae895255f85599afbc72bdf;hp=e7d85817700e755c4869b654526fc349f75cc139;hb=425ebacf6c53fa475ad0e8c7aea62d19617d4aea;hpb=3a774098a13421bc63c995c8dbfc9c716397d324 diff --git a/wrw/session.py b/wrw/session.py index e7d8581..3185b0b 100644 --- a/wrw/session.py +++ b/wrw/session.py @@ -1,23 +1,14 @@ -import threading, time, pickle, random, os +import threading, time, pickle, random, os, binascii from . import cookie, env __all__ = ["db", "get"] -def hexencode(str): - ret = "" - for byte in str: - ret += "%02X" % (ord(byte),) - return ret - def gennonce(length): - nonce = "" - for i in range(length): - nonce += chr(random.randint(0, 255)) - return nonce + return os.urandom(length) class session(object): def __init__(self, lock, expire=86400 * 7): - self.id = hexencode(gennonce(16)) + self.id = binascii.b2a_hex(gennonce(16)) self.dict = {} self.lock = lock self.ctime = self.atime = self.mtime = int(time.time())