Top "Aes" questions

Advanced Encryption Standard (AES) is a cryptographic block cipher algorithm.

Python PyCrypto encrypt/decrypt text files with AES

I already have a working program, but the only thing that doesn't work is the decrypt_file() function I have. …

python file encryption aes pycrypto
Decode a Base64 String using CryptoJS

I am trying to create a simple webpage with the goal to send and encrypted message to the server (which …

javascript php base64 aes cryptojs
AES-256 Password Based Encryption/Decryption in Java

I found a guide for implementing AES encryption/decryption in Java and tried to understand each line as I put …

java encryption passwords aes password-encryption
How to generate secret key in Java once and use that key in 2 different programs

My aim is to write a Java program to encrypt a text file (cipher text) using AES algorithm. And then, …

java cryptography aes secret-key
How to encrypt file from SD card using AES in Android?

I want to encrypt image from the sd card and store it again in SD card again using AES. The …

android file encryption aes
Golang, encrypting a string with AES and Base64

I'm trying to encrypt some text inside a database to be loaded and decrypted during program startup. I have tried …

encryption go base64 aes
OpenSSL C example of AES-GCM using EVP interfaces

For AES-GCM encryption/decryption, I tried this, but it has a problem. ctx = EVP_CIPHER_CTX_new(); //Get the cipher. …

c openssl aes aes-gcm
Java AES without padding

What are some of the simplest ways to AES encrypt and decrypt a 16 byte array without the automatic padding? I …

java encryption aes padding
ImportError: No module named Crypto

I am just starting to explore Python. I am trying to run an AES algorithm code and I am facing …

python aes pycrypto
Encrypt text to AES/CBC/PKCS7Padding

I am developing a web application to encrypt some texts with java 6. The encrypted that I have to do is …

java encryption aes pkcs#7