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

Unified Diff: third_party/tlslite/tlslite/utils/asn1parser.py

Issue 210323002: Update tlslite to 0.4.6. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Executable bit and --similarity=80 Created 6 years, 8 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/utils/aes.py ('k') | third_party/tlslite/tlslite/utils/cipherfactory.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/tlslite/tlslite/utils/asn1parser.py
diff --git a/third_party/tlslite/tlslite/utils/asn1parser.py b/third_party/tlslite/tlslite/utils/asn1parser.py
index c85c13810650ee2ca51fa3edc4a383a84d7d265c..618e8559c9be08417d26ccddf910538f0a57d919 100644
--- a/third_party/tlslite/tlslite/utils/asn1parser.py
+++ b/third_party/tlslite/tlslite/utils/asn1parser.py
@@ -1,9 +1,14 @@
+# Author: Trevor Perrin
+# Patch from Google adding getChildBytes()
+#
+# See the LICENSE file for legal information regarding use of this file.
+
"""Class for parsing ASN.1"""
-from compat import *
-from codec import *
+from .compat import *
+from .codec import *
#Takes a byte array which has a DER TLV field at its head
-class ASN1Parser:
+class ASN1Parser(object):
def __init__(self, bytes):
p = Parser(bytes)
p.get(1) #skip Type
« no previous file with comments | « third_party/tlslite/tlslite/utils/aes.py ('k') | third_party/tlslite/tlslite/utils/cipherfactory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698