summaryrefslogtreecommitdiff
path: root/coip/apps/auth/utils.py
blob: 9e0a7367c8c3a24e6e33bea7280bdea349584dea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'''
Created on Jul 7, 2010

@author: leifj
'''
from uuid import uuid4

def nonce():
    return uuid4().hex;

def anonid():
    return uuid4().urn;