3144:bb63e24383e4 | 3145:a9de05d4a22f |
---|---|
22 """ | 22 """ |
23 Module implementing classes for encryption according | 23 Module implementing classes for encryption according |
24 Advanced Encryption Standard. | 24 Advanced Encryption Standard. |
25 """ | 25 """ |
26 | 26 |
27 from __future__ import unicode_literals # __IGNORE_WARNING__ | 27 from __future__ import unicode_literals |
28 | 28 |
29 import os | 29 import os |
30 import math | 30 import math |
31 | 31 |
32 | 32 |