Tagged Questions
.NET Framework (1.1 and later) managed version of the Rijndael (AES) algorithm.
17
votes
4answers
32k views
Using AES encryption in C#
I can't seem to find a nice clean example of using AES 128 bit encryption.
Does anyone have some sample code?
9
votes
3answers
6k views
Why are RijndaelManaged and AesCryptoServiceProvider returning different results?
Here is the example that I have run. It has the same Mode, Padding, BlockSize, KeySize. I am using the same init vector, key and data.
Using the RijndaelManaged produces an encrypted value of:
...
7
votes
4answers
487 views
C# AES Rijndael - detecting invalid passwords
I'm using Rijndael to encrypt some sensitive data in my program.
When the user enters an incorrect password, most of the time a CryptographicException is thrown with the message "Padding is invalid ...
7
votes
3answers
1k views
ASP.NET MVC - Secure Temporary Storage of Credit Card Data
I have a checkout process for a shopping cart that is currently storing credit card data in the session for retrieval once the user finalizes the purchase. The purchase process is set up such that the ...
7
votes
3answers
3k views
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 Setting for FIPS turned on, is to disable it. It is a government computer, so I'm not sure ...
6
votes
4answers
2k views
Passphrase, Salt and IV, do I need all of these?
If I am using Rijndael CBC mode, I have no idea why we would need salt.
My understanding is even if people know the password, but he cannot get the data without IV.
So from my perspective, password + ...
6
votes
3answers
6k views
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 this method after reading this post, where Cheeso has managed to ...
6
votes
2answers
4k views
C# AES-256 Encryption
I am using RijndaelManaged to make a simple encryption/decryption utility. This is working fine, but I am trying to get it integrated with another program which is created in Unix (Oracle). My problem ...
5
votes
3answers
464 views
Calculate maximum size for encypted data
Is there any way to calculate the largest outcome from an Rijndael encryption with a fixed array lenght?
Encryption method: RijndaelManaged
Padding: PKCS7
CipherMode: CBC
BlockSize 128
KeySize: ...
5
votes
1answer
405 views
Thread Safety of .NET Encryption Classes?
I have a high-level goal of creating a static utility class that encapsulates the encryption for my .NET application. Inside I'd like to minimize the object creations that aren't necessary.
My ...
5
votes
1answer
7k views
Specified initialization vector (IV) does not match the block size for this algorithm
I am working on a base encryption method. I am using RijndaelManaged. I got this code from somewhere a long time ago, but can't remember where.
I had my code working before, but something changed and ...
5
votes
7answers
3k views
ASP.NET 2.0 RijndaelManaged encryption algorithm vs. FIPS
I'm running into an issue with an ASP.NET 2.0 application. Our network folks just upped our security, and now I get the floowing error whenever I try to access the app:
"This implementation is ...
4
votes
2answers
459 views
Index out of range when decrypting a file
I'm really not sure what's going on here. My app is encrypting files correctly and without issue, but it's throwing an IndexOutOfRangeException when trying to decrypt the same file...
Here's my code:
...
4
votes
2answers
929 views
Using Rijndael encryption for large files
I'm in a situation where I need to encrypt / decrypt a file of n length securely, ideally using Rijndael, but definitely at 256bit encryption.
I've played around with encryption before and have ...
4
votes
2answers
5k views
Specified key is not a valid size for this algorithm
I have with this code:
RijndaelManaged rijndaelCipher = new RijndaelManaged();
// Set key and IV
rijndaelCipher.Key = ...
4
votes
1answer
1k views
Java encode and .NET decode
The encryption is in java:
String salt = "DC14DBE5F917C7D03C02CD5ADB88FA41";
String password = "25623F17-0027-3B82-BB4B-B7DD60DCDC9B";
char[] passwordChars = new char[password.length()];
...
4
votes
5answers
390 views
How would you generate repeateable encryption key?
I am looking to encrypt data. I want to generate encryption keys based on a password, and some moving value, like time. The goal is to have the key change, but have anyone that knows the password be ...
4
votes
2answers
2k views
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 restricting the blocksize
...
4
votes
7answers
2k views
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 ...
3
votes
1answer
105 views
Why can't I encrypt multiple strings using one encryptor on MonoTouch?
I'm using the following (trimmed-down) class to encrypt some data before sending it from an iPad app to a WCF web service.
public class FlawedAlgorithm
{
protected static byte[] key = { 42, 42, ...
3
votes
1answer
386 views
exception when decrypting with Rijndael
I have some code that decrypts a password with Rijndael
public static string DecryptPassword(string encrypted) {
using (MemoryStream ms = new MemoryStream())
using (RijndaelManaged ...
3
votes
2answers
771 views
How can I decrypt a string using AES algorithm in c#?
I have an encrypted string from one of our customers.
This string was encrypted using the AES method in Java.
The only thing I have is the key: "xxxxxxxxxxxxxxxxxxxxxxxx" (24 chars) and the ...
3
votes
1answer
338 views
Rijndael managed: plaintext length detction
I am spending some time learning how to use the RijndaelManaged library in .NET, and developed the following function to test encrypting text with slight modifications from the MSDN library:
Function ...
3
votes
3answers
2k views
Encrypt in Java and Decrypt in C# with Rijndael
Using the Rijndael algorithm is it possible to encrypt a config file (or section(s) in a config file) and then decrypt that file in Java? Assumptions can be made such as:
Pass in IV (not ...
3
votes
4answers
8k views
Length of the data to decrypt is invalid
I'm trying to encrypt and decrypt a file stream over a socket using RijndaelManaged, but I keep bumping into the exception
CryptographicException: Length of the data to decrypt is invalid.
at ...
3
votes
6answers
2k views
Rijndael / AES from C# to VB6
I need to encrypt a byte array in VB6 and decrypt it in C# (NET 2.0). And viceversa (C# to VB6).
In C# I used RijndaelManaged class. In VB6 I used free pieces of from Internet. The best seems to be ...
3
votes
3answers
852 views
Is this a reasonable way to implement 'remember me' functionality
If a user logs into the site, and says 'remember me', we get the unique identifier for the user, encrypt this with RijndaelManaged with a keysize of 256 and place this in a httponly cookie with a set ...
2
votes
1answer
78 views
Output is invalid
I have a PHP program that encrypts a PDF file into .xxx file this output is being read by a C# program that decrypts this .xxx file back into PDF file.
My problem is that when I open the file ...
2
votes
2answers
63 views
Accessing a decrypted Rijndael encrypted file with a StreamReader without writing to disk
I'm currently working on encryption/decryption of plain text files that are embedded in a .dll file. The plain text files are scripts, and are being parsed as and when they're needed.
At the minute, ...
2
votes
2answers
695 views
C# 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 close but when I decrypt the file I end up with trailing junk characters. There are some ...
2
votes
1answer
1k views
Decrypting bytes encrypted by .NET's RijndaelManaged using Java
I am trying to decrypt something, which was encrypted using RijndaelManaged of .NET/C#, using Java to decrypt.
The C# program is not mine; I cannot change it to be more interoperable. But I know how ...
2
votes
2answers
484 views
Using RijndaelManaged encryption in Silverlight
I'm implementing a webservice client that is required to encrypt the request using 128-bits Rijndael. Because the RijndaelManaged class doesn't exist in Silverlight, I've followed the advice here:
...
2
votes
5answers
392 views
Is salting values an essential good practice with Rijndael or AES encryption?
I've implemented an encryption function using the Rijndael/AES encryption provider in .NET. My "understanding" of the algorithm suggests that as long as the Key and IV aren't compromised then the ...
2
votes
2answers
743 views
C# Private/Public Encryption using AES
I am trying to figure out how to make public/private keys that are AES encrypted. I'd like to be able to use it like so:
byte[] BytesToEncrypt = { 0x01, 0x02, 0x03, 0x04, 0x05 };
byte[] PublicKey;
...
2
votes
1answer
313 views
Calculation of encrypted file size does not match true size
I have the need to calculate the size of a file I am encrypting using Rijndael.
According to other answers on this site, and on google, the following is the correct way of calculating encrypted data ...
2
votes
1answer
509 views
AES / Rijndael Test Vectors : what padding mode?
So I've been looking at these test vectors for the Known Answer Test for AES / Rijndael (with 128-bit block) in CBC mode, and I wonder: what kind of padding do they use? PKCS7?
2
votes
4answers
820 views
Encrypting Files with AES, Encrypting Key with RSA - Am I on the right track?
Overview:
I'm trying to design an application that will encrypt files to safely send through Snail Mail (LARGE sets of data). I'm planning on using AES/RijndaelManaged encryption from .Net to encrypt ...
2
votes
3answers
688 views
RijndaelManaged: IV Generation?
I want to implement the most secure, and most reliable form of symmetric key cryptography in my application. The user should input a password to encrypt/decrypt, and that's all. For RijndaelManaged, ...
2
votes
3answers
3k views
RijndaelManaged “Padding is invalid and cannot be removed” that only occurs when decrypting in production
I know other questions have been asked on this but none so far have provided a solution or are exactly the issue I have.
The class below handles the encryption and decryption of strings, the key and ...
2
votes
1answer
2k views
ASP.NET Rijndael Encryption Error - Specified key is not a valid size for this algorithm
I can't seem to get past this problem, I've created what I assume to be a 256-bit key using the random generator at GRC and combined that with my IV. I keep getting the error below:
Specified key is ...
2
votes
2answers
2k views
Decryption with AES and CryptoAPI? When you know the KEY/SALT
Okay so i have a packed a proprietary binary format. That is basically a loose packing of several different raster datasets. Anyways in the past just reading this and unpacking was an easy task. But ...
2
votes
2answers
1k views
AES 256 encryption
I am using AES 256 to encrypt/decrypt some plain text. But the algorithm uses only PKCS7 for padding, but I need to use PKCS5 to make it compatible to other platforms. How can I achieve this?
My ...
2
votes
2answers
180 views
How do I pre-determine the length of the resultant cipher text produced in an encryption operation?
I have an application which stores some information in an encrypted state, both on file and in a database. How can I calculate what the length of the resultant cipher text will be based on the plain ...
2
votes
3answers
5k views
“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 am beginner, cant figure out whats wrong. whats wrong?
public bool EncryptStream()
{
...
2
votes
3answers
2k views
RSA Encryption public key not returned from container?
I feel like what I am trying to do is very simple. But for some reason it doesn't want to work:
Here is a complete code snippet to test what I am trying to do:
using System;
using System.Xml;
using ...
2
votes
3answers
173 views
Converting the Rijndaelmanged() byte[] to a string
I want to convert the Rijndaemanaged() encrpted value to a string.
Will ToBase64String() suffice? It says its only for 8-bit arrays, but AES is 128 bit right?
Update
For the encrption, I am using ...
2
votes
1answer
3k views
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(), it creates the Key and IV for you.
What size does it ...
1
vote
1answer
58 views
How can I find the initialization vector CAPICOM used to AES-encrypt my data?
I have an application written in Classic ASP that encrypts data via CAPICOM and stores it in a database. The encryption code looks something like this (Classic ASP, VB. Simplified a bit for brevity):
...
1
vote
1answer
134 views
Rijndael/AES decryption C# to PHP conversion
I have the following code in C#
string s = "hellowld";
byte[] bytes = new UnicodeEncoding().GetBytes(s);
FileStream stream = new FileStream(inputFile, FileMode.Open);
RijndaelManaged managed = new ...
1
vote
1answer
123 views
How do I send encrypted text from C# to a PhantomJS script using javascript slowAES?
I've got a script that runs in PhantomJS on my server that I need to pass a password to as a command line argument to the script. For those of you unfamiliar with PhantomJS, it's a headless webkit ...