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

Unified Diff: third_party/tlslite/tlslite/sharedkeydb.py

Issue 211173006: Perform tlslite 0.3.8 -> 0.4.6 renames ahead of time. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Drop the -B Created 6 years, 9 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
« no previous file with comments | « third_party/tlslite/tlslite/sessioncache.py ('k') | third_party/tlslite/tlslite/tlsconnection.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/tlslite/tlslite/sharedkeydb.py
diff --git a/third_party/tlslite/tlslite/SharedKeyDB.py b/third_party/tlslite/tlslite/sharedkeydb.py
similarity index 93%
rename from third_party/tlslite/tlslite/SharedKeyDB.py
rename to third_party/tlslite/tlslite/sharedkeydb.py
index 3246ec7f155453d19ffeef9c7e9ebddde7ceb8a7..97b31a505e82f654fc0d8b150e68450641322f5c 100644
--- a/third_party/tlslite/tlslite/SharedKeyDB.py
+++ b/third_party/tlslite/tlslite/sharedkeydb.py
@@ -3,8 +3,8 @@
from utils.cryptomath import *
from utils.compat import *
from mathtls import *
-from Session import Session
-from BaseDB import BaseDB
+from session import Session
+from basedb import BaseDB
class SharedKeyDB(BaseDB):
"""This class represent an in-memory or on-disk database of shared
@@ -55,4 +55,4 @@ class SharedKeyDB(BaseDB):
def _checkItem(self, value, username, param):
newSession = self._getItem(username, param)
- return value.masterSecret == newSession.masterSecret
+ return value.masterSecret == newSession.masterSecret
« no previous file with comments | « third_party/tlslite/tlslite/sessioncache.py ('k') | third_party/tlslite/tlslite/tlsconnection.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698