Top "Aes" questions

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

Using CryptoJS to encrypt in Javascript and decrypt in Java

I am trying to encrypt something in JavaScript using the google's https://code.google.com/p/crypto-js/#AES exactly as …

javascript java encryption aes cryptojs
AES difference between iPhone (Objective-c) and Java

I have been tearing my hair out all day trying to solve this... I have an objective-c client running on …

java objective-c encryption aes
AES acceleration for Java

I want to encrypt/decrypt lots of small (2-10kB) pieces of data. The performance is ok for now: On …

java encryption aes
Golang AES ECB Encryption

Trying to emulate an algorithm in Go that is basically AES ECB Mode encryption. Here's what I have so far …

encryption go aes ecb
How to encrypt data in a UTF-8 string using OpenSSL::Cipher?

In a Rails 3.0 (Ruby 1.9.2) app I'm trying to encrypt some data using something like this: cipher = OpenSSL::Cipher.new 'aes-256…

ruby-on-rails ruby utf-8 openssl aes
How to decrypt a cryptojs AES encrypted message at the java server side?

I have the following cryptojs based javascript encryption/decryption functions which works perfectly fine. I use a random salt, random …

java encryption aes cryptojs
last block incomplete with CipherInputStream/CipherOutputStream, even with padding AES/CBC/PKCS5Padding

Actually, I searched lot from internet and in stackoverflow too for this, Initially I don't used padding in my encryption …

java android encryption aes padding
AES GCM implementation in c#

I am implementing an AES cipher in GCM mode in c#. My question pertains to the "additional authenticated data"(AAD). …

c# aes aes-gcm
AES/CBC/PKCS#5 Encryption Algorithm In PHP

Im attempting to integrate the SagePay payment gateway into a website using the 'Form Integration' method. Basically the form integration …

php encryption aes opayo
Padding is incorrect. AES Python encryption

I'm trying to put together a simple encryption using python. This is the encrypt: from Crypto.Cipher import AES from …

python encryption aes padding pycryptodome