aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/authtoken
diff options
context:
space:
mode:
authorMatthew King2014-02-01 16:56:23 -0500
committerMatthew King2014-02-04 22:50:11 -0500
commitf8cda8adbd7db4cd60b1dbdcd4bb5debc64ba572 (patch)
treeb00a3f2361c5ccc0fadbe2b2c8494430fe841bfc /rest_framework/authtoken
parent74fc6d8f49a180c04229f002d3a3eb44fe8b1cab (diff)
downloaddjango-rest-framework-f8cda8adbd7db4cd60b1dbdcd4bb5debc64ba572.tar.bz2
Generate random token directly
Diffstat (limited to 'rest_framework/authtoken')
-rw-r--r--rest_framework/authtoken/models.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/rest_framework/authtoken/models.py b/rest_framework/authtoken/models.py
index 024f62bf..8eac2cc4 100644
--- a/rest_framework/authtoken/models.py
+++ b/rest_framework/authtoken/models.py
@@ -1,5 +1,5 @@
-import uuid
-import hmac
+import binascii
+import os
from hashlib import sha1
from django.conf import settings
from django.db import models
@@ -34,8 +34,7 @@ class Token(models.Model):
return super(Token, self).save(*args, **kwargs)
def generate_key(self):
- unique = uuid.uuid4()
- return hmac.new(unique.bytes, digestmod=sha1).hexdigest()
+ return binascii.hexlify(os.urandom(20))
def __unicode__(self):
return self.key