update comment on x509 class
authorThomasV <thomasv@gitorious>
Fri, 27 Jun 2014 09:44:34 +0000 (11:44 +0200)
committerThomasV <thomasv@gitorious>
Fri, 27 Jun 2014 09:44:34 +0000 (11:44 +0200)
lib/x509.py

index 31d5c80..53b2d6b 100644 (file)
@@ -56,7 +56,10 @@ def decode_str(data):
 
 
 class X509(tlslite.X509):
-    """ Child class of tlslite.X509 that uses pyasn1 """
+    """Child class of tlslite.X509 that uses pyasn1 to parse cert
+    information. Note: pyasn1 is a lot slower than tlslite, so we
+    should try to do everything in tlslite.
+    """
 
     def slow_parse(self):
         self.cert = decoder.decode(str(self.bytes), asn1Spec=Certificate())[0]