6
votes
3answers
4k views
c# implementations of AES encryption
Hi,
I can't seem to find a nice clean example of using AES 128 bit encryption.
Does anyone have some sample code?
5
votes
2answers
792 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:
…
4
votes
2answers
743 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 …
3
votes
2answers
231 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
…
3
votes
2answers
353 views
AES 256 encryption
Hi,
I am using AES 256 to encrypt/decrypt some plain text. But the algorith uses only PKCS7 for padding, but I need to use PKCS5 to make it compitable to other platforms. How can I acheive this?
My …
3
votes
3answers
154 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: …
3
votes
6answers
331 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 …
2
votes
2answers
528 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 …
2
votes
4answers
883 views
Rijndael / AES from C# to VB6
Hello,
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 …
2
votes
3answers
95 views
Converting the Rijndaelmanged() byte[] to a string
Hi,
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 …
1
vote
2answers
68 views
Does Rijndael always throw an exception if the password isn’t correct?
I'm using Rijndael to encrypt/decrypt some sensitive images that will be used on some documents. I'm trying to be absolutely sure that the password provided works and that, by some quirk of fate, an …
1
vote
2answers
476 views
Getting SlowAES and RijndaelManaged class in .NET to play together
Hi,
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 …
1
vote
1answer
122 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 …
1
vote
4answers
887 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 …
1
vote
1answer
156 views
What do Streams do when implementing AES encrption in .NET?
Hi,
The Rijndael encryption algorithm is implemented in .NET using 3 streams in the following example: Rinjdael.
Can someone explain to me what these streams are doing? How/Why are they used?
// …
