Top "Aes" questions

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

Process a single AES-128-ECB block using C/C++ and openssl

I want to en- and decode a single 16 bytes block of data using AES-128-ECB cipher. First I did it …

c++ c openssl aes ecb
Does AES_cbc_encrypt add padding?

Consider the following snippet of C++ code: #include <iostream> #include <openssl/aes.h> #define AES_KEY_…

c++ openssl aes cbc-mode
M2Crypto Encrypt/Decrypt using AES256

Can someone provide me code to encrypt / decrypt using m2crypto aes256 CBC using Python

python aes m2crypto
Can PKCS5Padding be in AES/GCM mode?

What's the padding mode for AES/GCM? I understood it can be NoPadding, as in ECB mode it can be …

java algorithm aes padding aes-gcm
Remove \r and \n from AES encrypted string

I am encrypting a string using AES but the encrypted string contains \n and \r at the end. public class …

java encryption aes newline carriage-return
AES Encryption is implemented in ECB mode but it is not security compliant. How to implement CBC mode

I have implemented AES encryption in java, but the algorithm is not accepted by team as it is implemented in …

java security encryption aes cbc-mode
Encrypt in javascript and decrypt in C# with AES algorithm

I tried to encrypt in angular using AES library from AES. I encrypted the string using the CryptoJS.AES.encrypt() …

javascript encryption aes cryptojs
Does net-snmp support AES-192 and AES-256 encryption?

The network device has been configured with snmpv3 users which uses AES192 as the privacy protocol.But when the following …

aes snmp net-snmp
Correct way to free/allocate the context in the OpenSSL

I'am using the Open SSL in my program, to encrypt and decrypt the data using aes ciphers. At the moment …

c encryption openssl aes
Specified initialization vector (IV) does not match the block size for this algorithm

public static string GenerateKey() { AesCryptoServiceProvider aesCrypto = (AesCryptoServiceProvider)AesCryptoServiceProvider.Create(); // Use the Automatically generated key for Encryption. return ASCIIEncoding.ASCII.GetString(…

c# .net visual-studio-2008 aes aescryptoserviceprovider