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

0
votes
1answer
48 views

length of data to decrypt is invalid rijndael c# sql

I am trying to encrypt / decrypt sensitive data such as SSN, the encryption process goes fine, saving in DB looks good too, retrieval looks good too, but when I am on the last step to decrypt the data ...
-1
votes
0answers
57 views

How to create RijnDael Algorithm in android? [closed]

I'm using the Rijndael algorithm to encrypt and decrypt strings. I want read the Result of Encrypting String from PHP Server with my Android client, and then send back to PHP SErver with Encrypted ...
-3
votes
0answers
81 views

Rijndael Algorithm to Encrypt and Decrypt In Android [closed]

I'm using the Rijndael algorithm to encrypt and decrypt strings. Below is my PHP code. How can I do this in Android/Java? function encrypt($pass, $decrypted) { $key = $this -> getkey($pass); ...
0
votes
1answer
80 views

Using node.js to decrypt data encrypted using c#

I'm facing a issue now which need you guys help. I use c# to do some encryption. Then need to use node.js to decry-pt it. But I just found that I can't do it correctly base on my c# encryption ...
0
votes
1answer
63 views

A first chance exception of type 'System.ArgumentNullException' occurred in mscorlib.dll

I a building a program that can ecnrypt and decrypt files using rijndael algorithm. But if i debug i get the following error: A first chance exception of type 'System.ArgumentNullException' ...
0
votes
1answer
39 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 ...
3
votes
1answer
113 views

AES encrypt C# decrypt Java?

I'm trying to decrypt C# encrypted data in Java without success. I'm using 128 bit key&block size with PKCS7 padding. Here's C# code: public byte[] Encrypt(byte[] data, byte[] key) { ...
0
votes
2answers
131 views

Encrypt with PHP Mcrypt and Decrypt with MySQL aes_decrypt?

Is it possible to Encrypt data with PHP mcrypt and decrypt it in the database with MySQL AES_DECRYPT? At the moment, I'm using RIJNDAEL_128 for mcrypt on PHP. I've also made sure that the encrypted ...
1
vote
2answers
58 views

Is it safe to trim a decrypted string?

I am encrypting and decrypting a string using: $key = 'my key'; $data = 'my string'; $ivSize = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_CBC); $iv = mcrypt_create_iv($ivSize, ...
0
votes
1answer
31 views

PHP mcrypt same trailing characters

When running this: var_dump(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, '12345', '1abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz', MCRYPT_MODE_ECB, ...
3
votes
1answer
198 views

Rijndael 256 encryption: Java and .NET do not match

I need to translate a powershell script with Rijandael encryption to Java. Here is the source powershell code: [Reflection.Assembly]::LoadWithPartialName("System.Security") Add-Type -AssemblyName ...
0
votes
2answers
266 views

Xcode AES encrypt / decrypt - php compatibilty issues

I am trying to encrypt a string in Xcode and decrypt it with PHP or encrypt with PHP and decrypt with Xcode. So first of all I am trying to get the same AES encryption result. Here is my Xcode file ...
0
votes
1answer
124 views

C# Rijndael CryptographicException “Length of the data to encrypt is invalid.”

I am trying to encrypt and decrypt a file with the rijndael algorythm, but i have been getting the error "Length of the data to encrypt is invalid.". I am able to encrypt the file, but i can't decrypt ...
1
vote
1answer
375 views

Rijndael encrypt file in C# and decrypt as string in Delphi

I am trying to encrypt a file in C# and decrypt the content in delphi as a string. I have tried several settings, key/block sizes and modes. Currently the code on C# side is: private void ...
0
votes
2answers
172 views

VB.Net equivalent for Java Rijndael decryption method

I have a working java decryption function displayed below. The java source code for the RijndaelAlgorithm is the standard code you see all over the internet - for example: ...
1
vote
1answer
37 views

mcrypt_crypt and decrypt does result does not match

I've got these 2 methods for encryption and decryption but the input value does not match the output value of the decrypt function, can you please help me find the problem? private function ...
1
vote
1answer
126 views

How can I decrypt the data which size is not multiple of block size?

I am trying to decrypt and encrypt datas with AESManaged or RijndaelManaged in VB.NET. I have a data packet which size is not multiple of block size. In this situation, it gives error as "Length of ...
2
votes
0answers
69 views

RijndaelManaged.CreateEncryptor key expansion

There are two ways to specify a key and an IV for a RijndaelManaged object. One is by calling CreateEncryptor: var encryptor = rij.CreateEncryptor(Encoding.UTF8.GetBytes(key), ...
0
votes
0answers
78 views

Which settings does this rijndael pseudocode use to decrypt?

I am trying to reverse a decryption code from ASM source. This code decrypts the packet coming from the server. I just want to decrypt packets like this code. But I couldn't do that. Because: ...
2
votes
1answer
46 views

Padding error after partial reading final block

I am trying to test my cryptography code and keep getting the CyrptographicException "Padding is invalid and cannot be removed" when ever decrypt is disposed. I get a similar error if I try to read ...
1
vote
1answer
271 views

Encrypt and decrypt doesnt give the same plain text using AES/ECB/NoPadding

String plain1= "Test"; byte[] cipher = SplashSecure.getInstance().encrypt2(plain1); String plain2 = SplashSecure.getInstance().decrypt2(cipher); plain = Test������������������������ After ...
0
votes
0answers
40 views

Padding is invalid and cannot be removed aes [duplicate]

I have searched solutions on this website but none solved my problem. Sometimes I recieve "padding is invalid and cannot be removed" exception. I don't know what to do. When I tried some solutions, ...
0
votes
2answers
347 views

Encrypting and decrypting a string using Rijndael

Before I start, I know there are a lot of similar questions on stackoverflow, but the majority of the answers consist of a large section of code with no explanation or help to aid the user. What I ...
1
vote
1answer
159 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)) { ...
0
votes
1answer
146 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 = ...
0
votes
0answers
251 views

PHP decrypt with Rijndael-128

I have a function in php which decrypt as the title. This function decode from base64 and decrypt correctly: function decrypt($base64encoded_ciphertext) { $key = ...
0
votes
1answer
207 views

Is this Rijndael secure enough for use in production systems? [closed]

Found an example of how to implement Rijndael on http://www.obviex.com/samples/Encryption.aspx Is this code secure enough for production systems? using System; using System.IO; using System.Text; ...
1
vote
1answer
267 views

Padding is invalid and cannot be removed with Rijndael decryption

I am seeing the "Padding is invalid and cannot be removed" error when I call the method below to decrypt the string from a windows application. String was encrypted from an asp.net application. Both ...
0
votes
0answers
54 views

Encypt and decrypt the dataset

I m loading the data into dataset form sqlserver. Now i wanna this data to be write in Xml file in encrypted form and save it somewhere in disk. On reading this xml into dataset , i wanna dataset to ...
2
votes
0answers
39 views

Trying to reconcile elliptic curve error

I am trying to do the following: I have a piece of software which is using ECC to generate a standard Rijndael key (NOT AES... There is a difference: AES only supports key sizes of 128, 192, and 256 ...
1
vote
1answer
366 views

file encryption and decryption c# Rijndael cipher

I can encrypt a text file that is located on my desktop using the following code. private void btnEncrypt_Click(object sender, EventArgs e) { //EncryptFile(); try { ...
1
vote
0answers
135 views

PHP Decryption of Rijndael 256 from .NET

I am getting a base64 encoded Token from a .NET Website and wish to decode it in PHP. I received the Key and the IV from the programmer but I can't get the decryption to work. I read a lot about ...
1
vote
1answer
490 views

Encrypt and Decrypt with Rijndael data too long

I'm trying to get this code to encrypt and decrypt but I keep getting data length too long when decrypting during the .FlushFinalBlock(). I'm not sure what I'm doing wrong here because I'm out of my ...
2
votes
1answer
288 views

Proper C# Rijndael IV Usage/Storage

Afternoon, So I'm fairly new to all these encryption methods and usages. I've just started building an Encryption Implementation. Now My method of encryption and decryption seems to be working ...
1
vote
2answers
782 views

Java AES-256 Decryption - translating code from ActionScript 3

I have a working decryption in ActionScript 3, now I want to get the same result when decrypting in Java. (I know that the OFB-mode and NullPadding is probably not preferred, but that's what I used ...
2
votes
1answer
317 views

Rijndael: Same input / different output on multiple machines

Some software i wrote uses the Rijndael algorithm from .Net4.0 to encrypt and decrypt license information. The Problem is as followed: The program generates a string, which is transformed into a ...
-1
votes
3answers
141 views

The PHP decrypt function for this resolution (look at) [closed]

After a long time searching for the best way to en/decrypt data between PHP and iOS, I'm now asking you for a function in PHP. I'm using this framework (https://gist.github.com/2507415) in ...
0
votes
1answer
190 views

PHP: decrypting AES in Counter mode with mcrypt

I have a string encrypted with AES in Counter mode, it wasn't done with PHP and I can't make mcrypt to decode it :( there's a class that works as expected: ...
2
votes
1answer
362 views

rijndael: Encrypt/decrypt the same data in C and Python

I'm trying to figure out how to mirror encryption/decryption from an existing C function over to python. However, in my tests of encrypting with C and decrypting with python, I can't figure out some ...
1
vote
1answer
42 views

Is ECB a safe option if you don't expect duplicate results?

I want to encrypt long paragraphs of text using Rijndael-256 (the text has been compressed and converted to base64 before this). It is very unlikely for the two to be the same. But if they happen to ...
9
votes
2answers
572 views

Decrypting the .ASPXAUTH Cookie WITH protection=validation

For quite sometime I've been trying to decipher the ASP .ASPXAUTH cookie and decrypt it using PHP. My reasons are huge and I need to do this, there is no alternative. In PHP so far I have ...
0
votes
1answer
162 views

.NET Rijndael encryption key too large?

I have received a SQL server database with passwords. This database is coming from a .NET website. I am rebuilding the website to PHP, so I would like to use my own encryption algorithm for the ...
5
votes
2answers
629 views

Delphi program using DCPcrypt does not decrypt from PHP after upgrade to XE2

I have an application developed in Delphi 2007 in which a value is encrypted by PHP and decrypted in the application. Encryption algorithm is RIJNDAEL 128. When I moved the XE2 and installed the ...
2
votes
0answers
260 views

How to call use .NET RijndaelManaged from native COM?

Can anyone give example usage for using System.Security.Cryptography.RijndaelManaged from native Win32 using COM? Here is a functional example of how to use .NET's ...
1
vote
1answer
277 views

cipher rijndael delphi 2010 dcp

I have an IV (initialization vector) and key, i need to cypher a string this is the code: function TForm1.CipherAES (key: AnsiString; Vector: AnsiString; InStream: TMemoryStream) : TMemoryStream; ...
-2
votes
1answer
726 views

How do I translate this C# encrypt function into Java?

I need to translate the below C# codes into Java, however, I could not find any Java equivalent to the Rfc2898DerivedBytes and Rijndael of C#. private static string Encrypt(string sData, string ...
0
votes
3answers
235 views

Problems with conversion from Int to Byte (Java)

I am developing an app for Android. In this app, you must use the algorithm for encryption / decryption Rijndael. To use this algorithm, I need to mount the IVs. In the case is an array of bytes. So ...
2
votes
0answers
1k views

Rijndael 128 Encrypt/decrypt between vb.net and php

EDIT: sorry for this question, i solved it immediately by myself ... the only thing i had to do was to set the padding to zeros: aes.Padding = PaddingMode.Zeros i am trying to encrypt the traffic ...
0
votes
1answer
606 views

Problems with the key encryption / decryption AES (Rijndael)

I'm working on a Android project that uses the AES algorithm (Rijndael) to encrypt and decrypt information trafficked. WS I consume has a fixed key for encryption and decryption. So I have to have ...
0
votes
1answer
689 views

Encryption / Decryption using Rijndael with key 256bit on Android

I am developing an Android application that consumes a WS. For exchange of information between the android application and WebService, you must use the algorithm encryption / decryption Rijndael with ...

1 2 3 4