Top "Aes" questions

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

Can I use AES in CTR mode in .NET?

.NET's AES does not implement CTR directly. It only implements CBC, CFB, CTS, ECB and OFB. Can I use any …

.net aes encryption
How to encrypt / decrypt AES with Libsodium-PHP

I need to encrypt/decrypt data with PHP. I am completely new to this, however I have read that Libsodium-PHP …

php encryption cryptography aes libsodium
AES-NI intrinsics enabled by default?

Oracle has this to say about Java 8 with regards to AES-NI: Hardware intrinsics were added to use Advanced Encryption Standard (…

java cryptography aes cpu jvm-hotspot
Getting SlowAES and RijndaelManaged class in .NET to play together

I'm trying to setup AES encryption / decryption using the javascript library SlowAES and the RijndaelManaged class in .NET. I chose …

.net javascript aes rijndaelmanaged pbkdf2
Build openssl with just RSA and AES

I'm using libcrypto.a (OpenSSL) with a project. By default all the algorithms are available under libcrypto.a. For the …

build openssl rsa aes sha
Is there any difference, if I init AES cipher, with and without IvParameterSpec

I was wondering, is there any difference, if I init AES cipher, with and without IvParameterSpec? With IvParameterSpec SecretKeySpec skeySpec = …

java android security encryption aes
SQL Encrypted Columns in WHERE Clause

I am looking to apply SQL column level encryption using symmetric keys. The initial steps needed to create the Database …

sql-server sql-server-2008 encryption-symmetric aes
Chrome 80 how to decode cookies

I had a working script for opening and decrypting Google Chrome cookies which looked like: decrypted = win32crypt.CryptUnprotectData(enctypted_…

python google-chrome cookies aes dpapi
What does—or did—"volatile void function( ... )" do?

I've seen How many usage does "volatile" keyword have in C++ function, from grammar perspective? about use of the volatile …

c function aes volatile void
openssl_encrypt() randomly fails - IV passed is only ${x} bytes long, cipher expects an IV of precisely 16 bytes

This is the code I use to encrypt/decrypt the data: // Set the method $method = 'AES-128-CBC'; // Set the encryption …

php encryption aes encryption-symmetric php-openssl