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

Unified Diff: chrome/browser/policy/test/policy_testserver.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: More fixes. Oops. 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 | « no previous file | net/test/python_utils.cc » ('j') | net/test/python_utils.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/policy/test/policy_testserver.py
diff --git a/chrome/browser/policy/test/policy_testserver.py b/chrome/browser/policy/test/policy_testserver.py
index a02942f63e97b9353d5dfc2afd54555b40a414e6..83cab1737ec8506e7ac2e8fb6b136dbc0dc72c5d 100644
--- a/chrome/browser/policy/test/policy_testserver.py
+++ b/chrome/browser/policy/test/policy_testserver.py
@@ -847,7 +847,7 @@ class PolicyTestServer(testserver_base.BrokenPipeHandlerMixIn,
try:
key = tlslite.api.parsePEMKey(key_str, private=True)
except SyntaxError:
- key = tlslite.utils.Python_RSAKey.Python_RSAKey._parsePKCS8(
+ key = tlslite.utils.python_rsakey.Python_RSAKey._parsePKCS8(
tlslite.utils.cryptomath.stringToBytes(key_str))
assert key is not None
@@ -865,7 +865,7 @@ class PolicyTestServer(testserver_base.BrokenPipeHandlerMixIn,
# Use the canned private keys if none were passed from the command line.
for signing_key in SIGNING_KEYS:
decoded_key = base64.b64decode(signing_key['key']);
- key = tlslite.utils.Python_RSAKey.Python_RSAKey._parsePKCS8(
+ key = tlslite.utils.python_rsakey.Python_RSAKey._parsePKCS8(
tlslite.utils.cryptomath.stringToBytes(decoded_key))
assert key is not None
# Grab the signature dictionary for this key and decode all of the
« no previous file with comments | « no previous file | net/test/python_utils.cc » ('j') | net/test/python_utils.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698