--- a/eric6/Utilities/crypto/py3AES.py Fri Apr 09 18:13:36 2021 +0200 +++ b/eric6/Utilities/crypto/py3AES.py Fri Apr 09 18:38:01 2021 +0200 @@ -58,7 +58,7 @@ return b[:-numpads] -class AES(object): +class AES: """ Class implementing the Advanced Encryption Standard algorithm. """ @@ -609,7 +609,7 @@ return output -class AESModeOfOperation(object): +class AESModeOfOperation: """ Class implementing the different AES mode of operations. """