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

learn more… | top users | synonyms

0
votes
0answers
15 views

RijndaelManaged: Length of the data to decrypt is invalid

I am using the following method to encrypt a password. When trying to decrypt, I get the following error: Length of the data to decrypt is invalid. I have seen (and read most of) the many threads here ...
0
votes
1answer
37 views

Does an AES encrypted string include | (pipe)?

I'm using .NET's RijndaelManaged class to encrypt and decrypt strings. 3 different strings are first encrypted and then concatenated, separated by a pipe (|), and then this string is saved back to the ...
0
votes
1answer
26 views

Is knowing the salt used in Rfc2898DeriveBytes a security risk?

Sorry if this is a duplicate but I could not find anything that was not in some way related to DB encryption. My problem is not with a DB. I have a set of files encrypted using RijndaelManaged. In the ...
0
votes
0answers
24 views

Decrypting RijndaelManaged System.Exception._COMPlusExceptionCode

EDIT After posting i realized it might help if i actually decrypted the byte[] :( not exactly sure what i did wrong. I followed the example at Encrypt/Decrypt string in .NET Encryption works fine, ...
0
votes
1answer
47 views

decryption with rijndeal algorithm gives padding error

i am using rijndeal to encrypt and decrypt some data! but it gives me this error : Padding is invalid and cannot be removed. i searched much but nothing help me to solve this error! tis is my ...
0
votes
1answer
40 views

RijndaelManaged doesn't encrypt

I'm trying to encrypt a buffer with RijndaelManaged class without any success. It always return byte[0]. Here's the code: public byte[] Encrypt(byte[] data, byte[] key) { using (var ...
0
votes
0answers
30 views

Cryptography - Security of RijndaelManaged algorithm and where to store keys [duplicate]

I have the following code to encrypt and decrypt data using the RijndaelManaged in .NET. public string EncryptString(string ClearText) { byte[] clearTextBytes = Encoding.UTF8.GetBytes(ClearText); ...
0
votes
1answer
43 views

Issue with static encryption/decryption in a multi-threaded/TPL application

I have a static encryption/decryption class with static methods in one of my libraries. The code is a bit large so I posted it here: http://pastebin.com/zRZtNmjU I haven't had any issues with this ...
1
vote
1answer
135 views

Error Padding is invalid and cannot be removed

I get the Cryptographic Exception Padding is invalid and cannot be removed when trying to decrypt data. There are many questions on the net and on StackOverflow about this error, but I could not find ...
0
votes
0answers
32 views

Microsoft Enterprise Library's CryptographyManager discards all bytes that don't form a 16 byte 'phrase'

I'm having an issue with the function CryptographyManager.EncryptSymmetric, using 'RijndaelManaged' as the first argument, when the byte array has a length that isn't divisible by 16. For example, ...
0
votes
1answer
148 views

Aes decryptor gives empty string

I have problem with AES encryption/decryption. The commented code worked but sometimes gave error "padding is invalid and cannot be removed" so I changed it as it is explained here Padding is invalid ...
1
vote
1answer
170 views

Can't decrypt video using C# and Rijndael

I can't decrypt a video file that I encrypted it using Rijndael. Have a look at my encryption routine: using (FileStream _streamInput = new FileStream(inputPath,FileMode.Open,FileAccess.Read)) { ...
-3
votes
1answer
217 views

Not use RijndaelManaged in windows 8 app [closed]

Although I have created an windows 8 app in C #, I'd like to do the encryption without the RijndaelManaged class (because it is not used in winRT). But it is not going well. Could you tell me that I ...
0
votes
1answer
138 views

RSA Decrypt returns different byte[] results for same we

As illustrated in http://msdn.microsoft.com/en-us/library/vstudio/system.security.cryptography.rsacryptoserviceprovider.encrypt(v=vs.90).aspx I am trying to use an RSA key that is stored in a User ...
0
votes
1answer
155 views

How is it possible that Rijndael returns different result from string and byte[]?

Here is my code, first with string: byte[] concatBytes = Encoding.ASCII.GetBytes(key); byte[] keyBytes = Encoding.ASCII.GetBytes(key); for (int i = 0; i < 3; i++) { concatBytes = ...
1
vote
2answers
328 views

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 have 12-byte input message. The condition is that if PlainText is less than block-size (16-bytes) the ...
1
vote
2answers
569 views

AES CTR Mode with Bouncycastle Cryptography

I am trying to use to implement AES CTR encryption using the Bouncy castle cryptography library in C#. .NET provides RijndaelManaged Crypto Library but it does not support CTR mode for AES hence the ...
1
vote
2answers
645 views

Encrypting / Decrypting in vb.net does not always return the same value

I have a program in which I write and read configuration files. When I write, I encrypt the whole file using the RijndaelManaged object in vb.net, and when I read I decrypt using the same value for ...
0
votes
0answers
62 views

padding is invalid and cannot be removed in rijndaelmanaged decryption

I have encrypted URL with m_cipherText = new RijndaelManaged(); m_cipherText.KeySize = 256; m_cipherText.BlockSize = BLOCKSIZE_AES * 8; ...
1
vote
0answers
82 views

Security with RijndaelManaged and ServicePointManager

I have a security question about RijndaelManaged and ServicePointManager. I have implemented a system where C# application is encrypting data, such as user credentials and some XML data. Then I use ...
0
votes
1answer
243 views

Asp.net code not working for implementing rijndael encryption, decryption?

I'm reading a book entitled beginning asp.net security from wrox and I'm in this part where it shows a code snippet for using rijndael the problem this example is not included in the downloadable ...
1
vote
1answer
411 views

Encrypting/decrypting a file line by line?

I'm fairly novice to encryption, and I'm trying to get a line-by-line encryptor working; I need to be able to append encrypted lines to a file as I go during an application's run, rather than just one ...
0
votes
0answers
243 views

Missing argument while converting RijndaelManaged in java

while converting a .net code of decryption to java I got an exception Exception in thread "main" java.lang.IllegalArgumentException: Missing argument at ...
0
votes
1answer
114 views

Any alternatives for this code to know the byte count?

okay so I have this code for decrypting files public static byte[] DecryptFile(string inputFile, string skey) { RijndaelManaged aes = new RijndaelManaged(); byte[] key = ...
2
votes
1answer
154 views

How do I decrypt this RijandelManaged in ruby, from C#?

static byte[] keyBytes = new byte[] { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
1
vote
3answers
241 views

Why RijndaelManaged returns junk data after encryption?

I have taken the decrypt code from http://msdn.microsoft.com/en-us/library/system.security.cryptography.cryptostream.aspx and modified it as follows below. I have an encrypted example, and it works ...
0
votes
2answers
298 views

How to store a RijndaelManaged generated KEY and IV in the database for later use?

Let me start by saying....yes I have read tons of posts on here in the last two days. No, I don't know anything about encryption, so don't bother...with the you shouldn't playing with fire comments.. ...
0
votes
1answer
233 views

what are default values for asp.net RijndaelManaged class properties

what are default values for RijndaelManaged class properties KeySize , BlockSize , FeedbackSize and Padding ? and are default values the best too or not ?
4
votes
1answer
661 views

Encryption in .NET and decryption in Android throws BadPaddingException: pad block corrupted

I did lot of research but i couldn't find answer to my issue. I'm doing AES encryption (Rijndael block size 128 bits) in .NET and decryption in Android (AES) with same password, salt & IV between ...
0
votes
4answers
2k views

“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 num; string s = "PUPlr"; ...
0
votes
1answer
283 views

Rijndael-256 Encryption Decryption in PHP

I have a situation where I have to encrypt and decrypt SOAP xml in PHP. I am trying to encrypt the Envelope of a soap xml. Encryption is working, but decryption is not. For encryption and decryption I ...
-2
votes
3answers
474 views

RijndaelManaged can not decrypt

The code can be found at: http://pastebin.com/3Yg5bHra My problem is, that when I decrypt then nothing gets returned at all. Nothing gets decrypted. It goes wrong somewhere around line 111-114. The ...
0
votes
3answers
1k views

Length of data to decrypt is Invalid

I've been researching an issue I'm having while attempting to decrypt using the Rijndael C# libraries. I've tried several solutions that have been posted on here but none seem to work or apply. The ...
2
votes
1answer
2k views

Reading from a cryptostream to the end of the stream

I'm having some trouble with the code below. I have a file in a temporary location which is in need of encryption, this function encrypts that data which is then stored at the "pathToSave" location. ...
0
votes
1answer
431 views

Utilizing RijndaelManaged, Enterprise Library and Autofac together

I'm newly experimenting with the cryptography application block while using Autofac as the container. As a result, I'm using the nuget package EntLibContrib 5.0 - Autofac Configurator. With the ...
0
votes
1answer
216 views

.Net RijndaelManaged can't find Javascript

I'm using the following Encrypt / Decrypt in my C# WCF: public static string EncryptString(string InputText, string Password) { RijndaelManaged RijndaelCipher = new RijndaelManaged(); ...
0
votes
1answer
282 views

Padding is invalid and cannot be removed

Exception: Source: mscorlib Message: Padding is invalid and cannot be removed. Stack trace: at System.Security.Cryptography.RijndaelManagedTransform.TransformFinalBlock(Byte[] inputBuffer, Int32 ...
0
votes
1answer
618 views

RijndaelManaged Cryptostream to decrypt file from disc into memory

I have a library I wrote a while back that uses the same logic as the class code below, but when it decrypts a file, it decrypts it onto the disc, and give an option to delete the encrypted version or ...
2
votes
1answer
293 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 ...
0
votes
2answers
892 views

Index was outside the bounds of the array. Rijndael Encryption

Before spending any time reading this, see the self-answer below. The problem was invalid input. When I try to decrypt some strings it throws this exception: " at ...
0
votes
1answer
441 views

Exception thrown when CryptoStream instance closed

I have a DecryptString function that uses the RijndaelManaged Cipher. It works 99.999% of the time but very occationally it throws an "IndexOutOfRangeException" exception with the message of "Index ...
2
votes
2answers
579 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, ...
1
vote
1answer
414 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): ...
0
votes
0answers
175 views

Exception: Length of the data to decrypt is invalid

I am working with a project that keeps generating a "Length of the data to decrypt is invalid" error. This is supposed to be a functional version and I can't see what is causing the error! public ...
1
vote
1answer
1k 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 ...
2
votes
1answer
610 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 ...
0
votes
1answer
266 views

Why can't I decrypt data using RijndaelManaged?

I'm working on a program that sends and receives messages just like messengers, and I need to encrypt the message on send button and decrypt the message when received. I'm using the RijndaelManaged ...
0
votes
3answers
6k views

simple encrypting / decrypting in VB.Net

I'm trying to figure out how to encrypt / decrypt a string in VB.Net. I followed the example given here and wrote the following code (below). There's a text box, an "encrypt" button, and a "decrypt" ...
1
vote
1answer
190 views

Should the initialization vector be required to be able to decrypt my data?

I'm using RijndaelManaged to encrypt and decrypt data. I may well have misunderstood the point of an initialization vector, but I am finding that if I set it to a different value when decrypting my ...
0
votes
1answer
158 views

How can I change an encryption key and still be able to decrypt old data?

I would need to create a symmetric key in C# and use it to encrypt a string, which I would eventually store in a database. I would use the AES mechanism in .Net to achieve this. I would use the same ...

1 2 3