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

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: 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 | « no previous file | third_party/tlslite/README.chromium » ('j') | no next file with comments »
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 68c3936056249619bb56689c94032165e9f219ed..1bb4bbbfdb7b174670f1dc27976199470384bb81 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 | third_party/tlslite/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698