Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Unified Diff: third_party/twisted_8_1/twisted/cred/util.py

Issue 12261012: Remove third_party/twisted_8_1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/twisted_8_1/twisted/cred/util.py
diff --git a/third_party/twisted_8_1/twisted/cred/util.py b/third_party/twisted_8_1/twisted/cred/util.py
deleted file mode 100644
index fbd6750e66d0cbd9b948bdffab9435980976b30f..0000000000000000000000000000000000000000
--- a/third_party/twisted_8_1/twisted/cred/util.py
+++ /dev/null
@@ -1,40 +0,0 @@
-
-# Copyright (c) 2001-2004 Twisted Matrix Laboratories.
-# See LICENSE for details.
-
-
-"""
-Utility functions for authorization.
-
-These are currently for challenge-response shared secret authentication.
-
-Maintainer: U{Glyph Lefkowitz<mailto:glyph@twistedmatrix.com>}
-"""
-
-# System Imports
-import md5
-import random
-
-from twisted.cred.error import Unauthorized
-
-def respond(challenge, password):
- """Respond to a challenge.
- This is useful for challenge/response authentication.
- """
- m = md5.new()
- m.update(password)
- hashedPassword = m.digest()
- m = md5.new()
- m.update(hashedPassword)
- m.update(challenge)
- doubleHashedPassword = m.digest()
- return doubleHashedPassword
-
-def challenge():
- """I return some random data.
- """
- crap = ''
- for x in range(random.randrange(15,25)):
- crap = crap + chr(random.randint(65,90))
- crap = md5.new(crap).digest()
- return crap
« no previous file with comments | « third_party/twisted_8_1/twisted/cred/strcred.py ('k') | third_party/twisted_8_1/twisted/enterprise/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698