Tagged Questions

Rijndael is a block cipher that won the Advanced Encryption Standard competition. A subset of it was standardized as AES (FIPS 197) in October 2000.

learn more… | top users | synonyms

7
votes
4answers
486 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
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 ...
5
votes
3answers
125 views

How to store the key used to encrypt files

I'm playing around with an app to backup files to "the cloud" :) and I want to encrypt the files before I store them. That part I have covered, but as this app will be monitoring folders for change ...
5
votes
2answers
344 views

C# Encryption function gives different output on windows and unix

I have an encryption tool written in C# that take a string as input. When i run the compiled exe file on my windows machine i get an output that is different from when i run it on the remote UNIX ...
5
votes
4answers
2k views

Rewrite Rijndael 256 C# Encryption Code in PHP

I have an encryption/decryption algorithm written in C# - I need to be able to produce the same encryption in PHP so I can send the encrypted text over HTTP to be decrypted on the C# side. Here is the ...
5
votes
3answers
463 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
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 ...
4
votes
1answer
683 views

Php Decrypt a String from C# .NET RIJNDAEL 256

Fixed it. $data = base64_decode(str_replace(' ', '+', $_GET['data'])); for whatever reason, Php was converting the +'s from the GET variablesinto spaces -- I am trying to decrypt a string that is ...
4
votes
2answers
844 views

Rijndael Padding Error

Hello I am trying to encrypt / decrypt a string via Rijaendal. I simply can't figure out why the decryption blows up. I always end up with an incorrect padding error. One thing that throws me off is ...
4
votes
5answers
413 views

Is RIJNDAEL encryption safe to use with small amounts of text given to users?

I am thinking about making the switch to storing session data in encrypted cookies rather than somewhere on my server. While this will result in more bandwidth used for each request - it will save ...
4
votes
2answers
3k views

Rijndael 256 Encrypt/decrypt between c# and php?

UPDATED I have made the changes to the C# code so it uses a block size of 256. but now the hello world looks like this http://pastebin.com/5sXhMV11 and I cant figure out what I should use with ...
4
votes
3answers
216 views

Rijndal Algorithm using C#

I want the code of Rijndael algorithm to encrypt any given text to store it in a database, I also want to know how to reverse the encryption method, ie: decrypt the encrypted text to use it.
4
votes
1answer
690 views

Cannot decrypt data with C# that was encrypted using PHP (Rijdael-128)

I decrypt data using PHP with this code: $content="1234"; $cp = mcrypt_module_open('rijndael-128', '', 'cbc', ''); $iv = mcrypt_create_iv(16, MCRYPT_RAND); $key = pack("H*",md5('a')); ...
4
votes
4answers
6k views

How to encrypt in VBScript using AES?

I am looking to encrypt some data using Rijndael/AES in VBScript using a specific key and IV value. Are there any good function libraries or COM components that would be good to use? I looked at ...
3
votes
2answers
239 views

.Net and PHP Rijndael encryption not matching

At first i thought it was the padding since mcrypt uses zero padding but i changed the php to use PKCS7 and get the same exact results Can anyone help? I think it has something to do with the padding ...
3
votes
2answers
129 views

AES Rijndael and little/big endian?

I am using the public domain reference implementation of AES Rijndael, commonly distributed under the name "rijndael-fst-3.0.zip". I plan to use this to encrypt network data, and I am wondering ...
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 ...
2
votes
2answers
73 views

How do I convert this C# Rijndael encryption to PHP?

There are already some helpful questions on SO: Rijndael 256 Encrypt/decrypt between c# and php? Rewrite Rijndael 256 C# Encryption Code in PHP Rijndael/AES decryption C# to PHP conversion However ...
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
133 views

Encrypt file in Perl and decrypt in c#

I'm trying to encrypt a text file using Perl and then decrypt it using a different application written in C#. Here's my Perl code: use strict; use Crypt::CBC; my $ifh; my $ofh; my $line; my $cipher ...
2
votes
1answer
166 views

How to de/encrypt with Rijndael (AES) and a Blocksize of 256 bits?

For certain reasons i need to implement rijndael de/compression with a blocksize of 256 bits (reason: data is encrypted in php and php can do it...). How can i change the Blocksize for a Cypher? If ...
2
votes
1answer
78 views

Encryption/Hashing issues

I'm working on a little script that will allow me to store relatively secure information in a cookie to validate a user login without the use of sessions. Part of the output is an encrypted salt to ...
2
votes
2answers
122 views

Why Rijndael encryption code is not working for large file?

I use the following Rijndael code to do encryption without fail for many times. But why it can not encrypt an ISO file with 4.2 GB? In fact my computer has 16GB memory and it should not be a memory ...
2
votes
3answers
85 views

Is it possible to NOT use the IV when implementing Rijndael decryption?

I am implementing a decryption of ciphertext using Rijndael's algorithm. Unfortunately, I have not got access to the encryption of the data and have only been provided with a password (to generate the ...
2
votes
0answers
267 views

Is my C# RSA/AES/salt/IV best practices approach missing anything?

While I'm no cryptographer, I do consider myself mostly up to date on the best practices regarding [a]symmetric encryption, hashes, and crypto random number generation. I've searched, and found, many ...
2
votes
1answer
437 views

How to Decrypt File which was encrypted using RijndaelManaged

I can encrypt image file. but can not decrypt that file. while ((readLen = cryptStrm.Read(bs, 0, bs.Length)) > 0) anyone can guess which part is wrong? the code i programmed is the ...
2
votes
1answer
448 views

.NET AES/Rijndael — inconsistent decryption when reusing decryptor

I've created a class for encrypting and decrypting using AES. public class AesEncryptionProvider { #region Fields // Encryption key private static readonly byte[] s_key = new byte[32] { ...
2
votes
2answers
479 views

SlowAES cannot decrypt properly without original size

First time poster here. Awesome community here. After endless hours of searching, I'm unable to figure out the answer to this problem I"m facing. First and foremost, I'm no guru when it comes to ...
2
votes
1answer
1k views

Perl & Ruby exchange AES encrypted information

What is the equivalent to Crypt::CBC in Perl for Ruby? Note: This problem similar to PHP/Perl at stackoverflow:655691. Perl Version use Crypt::CBC; use MIME::Base64::Perl; my $cipher = ...
2
votes
4answers
3k views

PHP Encryption & VB.net Decryption

I'm trying to do a simple task. Encypt a value in PHP and Decrypt it in my VB.net app. I figure I'd use tripleDES or Rijdael 128 or 256 I though this should be simple. Can anyone point me in the ...
2
votes
4answers
2k views

Encryption algorithm/library for .NET 2.0 + C++

I need a standard, Microsoft delivered, encryption library that works for both .NET 2.0 and C++. What would you suggest? We find that AES is only offered in .NET 3.5 (and available in C++) We find ...
1
vote
3answers
58 views

How to store the encyption keys securely in php code file

I have a website that users submit sensitive data to it then a php script encrypts these sensitive data using rijndael 256 and store it in mysql database the problem is that I want to store the key ...
1
vote
1answer
52 views

Confusion regarding Rijndael/SHA256 encryption

I need to work out a decryption/encryption algorithm, but I'm confused regarding SHA256 / CBC / Salt / IV etc. An example of a correctly encrypted string is: ...
1
vote
1answer
83 views

Kohana 3 Encrypt class encode() method returns different string each time

I'm doing a encode() from the Encrypt class and each time it returns a different string for the same input string. My application/config/encrypt.php: return array( 'default' => array( ...
1
vote
1answer
126 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
146 views

DCPCrypt/Delphi not properly encoding Rijndael

I have the DCPCrypt package (latest version) and am trying to do AES/Rijndael CBC encoding (128 bit blocks, 256 bit key) in Delphi2007 with test values from the AES Known Answer Test (KAT) Vectors ...
1
vote
2answers
204 views

AES Rijndael on PHP server and iOS generates sometimes different ciphers

I'm using NSData+AESCrypt category by Jim Dovey and NSString+AESCrypt by Michael Sedlaczek (2011-02-22). And on PHP I have a simple script: <?php $iv_size = ...
1
vote
1answer
52 views

Where is the proper location to embed IV information for file encryption using Rijndael algorithm?

I'm creating a Rijndael file encryption application. I will using a unique IV for each file encryption. My question: Where is the proper place to embed the IV info? My initial thought is to append ...
1
vote
2answers
92 views

Is that OK to use static IV value in Rijndael encryption for many files?

I have a question about IV in Rijndael encryption. My current approach of using Rijndael is to use a pair of static Key and Iv for all encryption operations (I mean I use this pair of Key and Iv for ...
1
vote
1answer
204 views

Interop between Javascript “Fritz Schneider's Rijndael Reference Implementation” and .NET

I am using the javascript Fritz Schneider's Rijndael Reference Implementation. I want to decrypt the result in C#. The input variables provided in Javascript Rijndael function are function ...
1
vote
2answers
455 views

PHP to Delphi and back Encryption-Decryption using Rijndael

I have problems with decrypting strings sent from PHP to Delphi using the rijndael cipher. I'm using mcrypt on the PHP side and DCP_rijndael on the Delphi side. At the moment I have the below code. ...
1
vote
1answer
127 views

Protecting encryption key from reverse engineering

I had a question regarding the use of AES Rijndael in a piece of software I am creating. I am using a sha256 hash to generate a key from a string with an arbitrary length, and then passing this as ...
1
vote
1answer
203 views

.NET System.Security.Cryptography Key Derivation Question (AES/Rijndael)

When using the methods GenerateKey(), CreateEncryptor(Byte[], Byte[]), or CreateEncryptor() found in System.Security.Cryptography.Rijndael or System.Security.Cryptography.Aes class, how are the the ...
1
vote
2answers
269 views

XML Encryption/Decryption in Separate Files

I need to encrypt an XML file, send it to another location and decrypt it there. As you can see from the codes below, I am using the same key but it won't work (for now im simply using two local ...
1
vote
1answer
144 views

Several questions about rijndael in .net

I need to consume a webservice exposed by another company. They tell me to use Rijndael in OFB mode to encrypt the data I send them, but apparently, .Net (3.5) does not supports OFB for Rijndael. It ...
1
vote
2answers
183 views

How do I determine that the key or vector are incorrect using Rijndael to decrypt a file?

When I use the wrong key, I am getting a "decrypted" garbage file and an exception from mscorlib.dll, "Specified block size is not valid for this algorithm." What I would like instead is for the ...
1
vote
1answer
456 views

How to make Rijndael CBC mode work in vb.net

I'm trying to make rijndael work in CBC mode. I'm not exactly sure how should I do it. I think problem in my current code is that the stream is initialized every time in the beginning of encryption, ...
1
vote
1answer
527 views

rijndael s-box with an example in simple words

All over google and wiki i'm not able to understand the rijndael s-box key scheduling... Can anyone explain them in simple words and with an clear example????
1
vote
1answer
223 views

Is it safe to use Rijndael.Create() instead of new RijndaelManaged()

I've read some on this topic, but I'm still not 100% comfortable with the answers I see. When you create a cryptographic algorithm using Rijndael.Create(), you get an object of type RijndaelManaged - ...
1
vote
2answers
821 views

Rijndael decryption in C#

I need to decrypt a string using Rijndael and those values: key size - 192 block size - 128 key - cmdAj45F37I5ud2134FDg2fF When I'm using the code below I get an error : string size illigle, can ...

1 2