| Index: third_party/tlslite/tlslite/x509certchain.py
|
| diff --git a/third_party/tlslite/tlslite/X509CertChain.py b/third_party/tlslite/tlslite/x509certchain.py
|
| similarity index 99%
|
| rename from third_party/tlslite/tlslite/X509CertChain.py
|
| rename to third_party/tlslite/tlslite/x509certchain.py
|
| index db55fa5a32456bc31f5959ea7e313b85a2fccf73..5db6d470b5e7109e8e3990de837934b61e9e3eb1 100644
|
| --- a/third_party/tlslite/tlslite/X509CertChain.py
|
| +++ b/third_party/tlslite/tlslite/x509certchain.py
|
| @@ -1,7 +1,7 @@
|
| """Class representing an X.509 certificate chain."""
|
|
|
| from utils import cryptomath
|
| -from X509 import X509
|
| +from x509 import X509
|
|
|
| class X509CertChain:
|
| """This class represents a chain of X.509 certificates.
|
| @@ -239,4 +239,4 @@ class X509CertChain:
|
| return False
|
| if not compareNames(cryptlib_py.CRYPT_CERTINFO_COMMONNAME):
|
| return False
|
| - return True
|
| + return True
|
|
|