What is the best way to perform AES encryption in Python without installing extra modules? Is it possible to encrypt and decrypt data using AES in Python without relying on external libraries? I need to communicate with a system in C#, where the encryption uses the System.Security.Cryptography
reference.
Additionally, I attempted to use PyAES, but it seems outdated. While I tried updating some parts of it to make it work, it still failed. I also can’t install certain libraries because my Python version is 3.4, and most latest versions require newer Python versions. Are there alternative solutions for Python AES encryption in this scenario?