Tag Archives: AES encryption

AES Encryption and Decryption in Java

While there are many encryption and decryption algorithms available, AES is one of the robust and reliable modes of encrypting the data. The implementation can be done in many languages as there are libraries and packages available for multiple languages. Creating the AES encryption/decryption library We do not need any special library to be downloaded… Read More »

AES Encryption using Python packages

AES stands for Advanced Encryption Standard. AES is the first and only publicly accessible cipher approved by the National Security Agency(NSA). There is multiple AES package available in python. In this post, we will see the implementation with two different packages in python Method1 – “crypto” package Method2 – “cryptography” package Using the “Crypto” AES package In this… Read More »