| Index: third_party/tlslite/tlslite/utils/aes.py
|
| diff --git a/third_party/tlslite/tlslite/utils/aes.py b/third_party/tlslite/tlslite/utils/aes.py
|
| index 8413f4c109371eeb69f75ddad11a73b9cde7b95f..95afaa340fe7cb9183b872cd299b2ad860f77c61 100644
|
| --- a/third_party/tlslite/tlslite/utils/aes.py
|
| +++ b/third_party/tlslite/tlslite/utils/aes.py
|
| @@ -1,6 +1,9 @@
|
| +# Author: Trevor Perrin
|
| +# See the LICENSE file for legal information regarding use of this file.
|
| +
|
| """Abstract class for AES."""
|
|
|
| -class AES:
|
| +class AES(object):
|
| def __init__(self, key, mode, IV, implementation):
|
| if len(key) not in (16, 24, 32):
|
| raise AssertionError()
|
|
|