Tagged Questions
The aescryptoserviceprovider tag has no wiki summary.
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:
...
3
votes
1answer
181 views
How many bytes are IV and Keys for AES?
I'm using AESCryptoServiceProvider in C#/.Net Framework and I'm wondering how large, in bytes, the IV and Keys are. I'm pretty sure that this class follows the specifications of AES so if anyone has ...
2
votes
1answer
334 views
FIPS-compliant encryption in .NET 2.0
We have a .NET 2.0 application that uses the RijindaelManaged class to encrypt some sensitive data. This was fine until we ran into some machines that require the use of FIPS-compliant algorithms.
...
2
votes
4answers
2k views
System.PlatformNotSupportedException AesCryptoServiceProvider
I've got the following problem.
I've created a class that uses AesCryptoServiceProvider to encrypt and decrypt some data. I'm using the class in a SharePoint WebPart and everything works fine. I'm ...
2
votes
2answers
623 views
Seekable alternative to .NET's CryptoStream?
Does anybody know a seekable alternative to .NET's CryptoStream?
It is OK if the alternative supports Seek only in "read" mode or if it is limited to e.g. AES256.
1
vote
1answer
55 views
AES and its cipher modes
I was trying encryption/decryption with AES then I tried the CBC & ECB modes
I got the same encrypted output from all three ! is this how it goes?
it's may not be wrong but I just don't know what ...
1
vote
1answer
534 views
Specified initialization vector (IV) does not match the block size for this algorithm
public static string GenerateKey()
{
AesCryptoServiceProvider aesCrypto = (AesCryptoServiceProvider)AesCryptoServiceProvider.Create();
// Use the Automatically generated key for ...
0
votes
1answer
79 views
Good AES Initialization Vector practice
per my question Aes Encryption... missing an important piece, I have now learned that my assumption for creating a reversible encryption on a string was a bit off. I now have
public static ...
0
votes
2answers
56 views
Aes Encryption… missing an important piece
I have a method in my static Encryption class that looks like this:
public static byte[] EncryptString(string toEncrypt, byte[] encryptionKey)
{
var toEncryptBytes = ...
0
votes
1answer
431 views
is there a Java ECB provider?
Anyone know of a Rijndael-128bit ECB provider in Java???
Also, what's the difference between AES-128bit and ECB? or are they the same? (couldn't find answer any where else online)
Thanks in ...
0
votes
4answers
570 views
AesCryptoServiceProvider not part of SymmetricAlgorithm?
I have a quick little app that steps through the possible symmetric encryption methods. I get them with the following line:
private static List<Type> GetAlgorithmTypes
{
get { ...
0
votes
2answers
452 views
Using Win32 Crypto API
I can't find any help to implement PROV_RSA_AES CSP in c++. is there any article or book to help me out with it?