Top "Aes" questions

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

How to decrypt OpenSSL AES-encrypted files in Python?

OpenSSL provides a popular (but insecure – see below!) command line interface for AES encryption: openssl aes-256-cbc -salt -in filename …

python encryption openssl aes pycrypto
AES Encryption - Key versus IV

The application I am working on lets the user encrypt files. The files could be of any format (spreadsheet, document, …

encryption aes
Encrypt and decrypt with AES and Base64 encoding

I have following program for encrypting data. import java.security.Key; import javax.crypto.Cipher; import javax.crypto.spec.SecretKeySpec; …

java encryption aes
encrypt- decrypt with AES using C/C++

How can I encrypt and decrypt a file with a 256 key AES in C or C++?

c++ c encryption aes
Size of data after AES/CBC and AES/ECB encryption

I would like to know the size of data after AES encryption so that I can avoid buffering my post-AES …

java encryption aes
AES encryption, what are public and private keys?

In AES encryption (.net framework), how are the public and private keys used? Are the public and private keys combined …

encryption aes
AES/CBC/PKCS5Padding vs AES/CBC/PKCS7Padding with 256 key size performance java

I am currently using AES/CBC/PKCS5Padding for encrypting files in Java with 256 bytes key size, but while searching …

java encryption aes pkcs#7 pkcs#5
invalid AES key length error

this code give invalid AES key length error. how can i correct it ? ( i want 128 bit key AES encryption ) package …

java encryption aes
How to decrypt message with CryptoJS AES. I have a working Ruby example

I'm able to decrypt AES encrypted message with Ruby like this: require 'openssl' require 'base64' data = "IYkyGxYaNgHpnZWgwILMalVFmLWFgTCHCZL9263NOcfSo5lBjAzOZAtF5…

javascript ruby aes cryptojs
InvalidKeyException Illegal key size

I have a test which runs great on my development MacBook Pro, but fails to run in continuous integration TeamCity …

java aes jce