Top "Rijndaelmanaged" questions

.NET Framework (1.1 and later) managed version of the Rijndael (AES) algorithm.

Encrypt AES with C# to match Java encryption

I have been given a Java implementation for encryption but unfortunately we are a .net shop and I have no …

c# java encryption aes rijndaelmanaged
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
Using Rijndael to encrypt/decrypt files

I need to transfer xml files and they are required to be encrypted. I have found some examples think I'm …

c# encryption rijndaelmanaged
When will C# AES algorithm be FIPS compliant?

Right now the only way I can get the RijndaelManaged algorithm to work on a computer with the Local Security …

c# security rijndaelmanaged rijndael fips
RijndaelManaged supports 128-256 bit key, what key size the default constructor generator?

For new RijndaelManaged(), the documentation says it supports keys of 128 bits and up to 256 bits. When you instantiate new RijndaelManaged(), …

c# aes rijndaelmanaged
Difference between symmetric crypto algorithms

C# looks to have 4 different symmetric crypto algorithms: RijndaelManaged, DESCryptoServiceProvider, RC2CryptoServiceProvider, and TripleDESCryptoServiceProvider. I am looking for more information …

c# encryption rijndaelmanaged
"Length of the data to decrypt is invalid." exception during Rijndael decryption

I get "Length of the data to decrypt is invalid." exception when i try to decrypt a memory stream. I …

exception rijndaelmanaged
"Specified initialization vector (IV) does not match the block size for this algorithm" using an CryptoStream

I've had troubles using an CryptoStream for my file encryption.. Code: public static void EncryptFile(string inputFile, string outputFile) { int …

c# .net rijndaelmanaged cryptostream
Padding in AES CBC

I am trying to test CBC with Random IV using (128-bit AES) in C#. In my question to solve, I …

c# cryptography encryption-symmetric rijndaelmanaged cbc-mode
When would I choose AesCryptoServiceProvider over AesManaged or RijndaelManaged?

I think the distinguishing factors are AesCryptoServiceProvider is FIPS compliant AesManaged is cross-platform, requires .NET 3.0 RijndaelManaged runs on .NET 2.0, requires …

.net aes rijndaelmanaged