Encrypted data size while using Triple DES - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T19:57:47Zhttp://stackoverflow.com/feeds/question/767408http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/767408/encrypted-data-size-while-using-triple-des1Encrypted data size while using Triple DESHemant2009-04-20T08:35:08Z2009-04-20T08:41:35Z
<p>I intend to use TripleDES in one of my project. I was doing some experiments to be comfortable with it. I understand block size of triple DES is 8 bytes so I assume that if give 8 byte of data, I should get 8 bytes of encrypted data. But what I get is:</p>
<pre>
Input Size | Encrypted Size
. | .
. | .
6 bytes | 8 bytes
7 bytes | 8 bytes
8 bytes | 16 bytes
9 bytes | 16 bytes
. | .
. | .
</pre>
<p>Is it normal? Is it the way it is supposed to work. Here is how I am trying to use triple DES:</p>
<p><code></p>
<pre><code>class TripleDESEncryption
{
private readonly TripleDESCryptoServiceProvider engine;
public TripleDESEncryption () : this (256) { }
public TripleDESEncryption (int keySizeInBits) {
engine = new TripleDESCryptoServiceProvider { KeySize = keySizeInBits };
engine.GenerateKey ();
}
public byte[] Encrypt (byte[] plain) {
return engine.CreateEncryptor ().TransformFinalBlock (plain, 0, plain.Length);
}
public byte[] Decrypt (byte[] encrypted) {
return engine.CreateDecryptor ().TransformFinalBlock (encrypted, 0, encrypted.Length);
}
}
class Program
{
static readonly int MAX_TEXT_LENGTH = 128;
static void Main (string[] args) {
Console.WriteLine ("{0,10}{1,10}{2,10}{3,10}", "Algo", "Key Size", "Input Size", "Encrypted Size");
var tripleDES = new TripleDESEncryption ();
var input = new List<byte> ();
for (int i = 0; i <= MAX_TEXT_LENGTH; i++) {
var plain = input.ToArray ();
var encrypted = tripleDES.Encrypt (plain);
Console.WriteLine ("{0,10}{1,10}{2,10}{3,10}", "Triple DES", keySize, input.Count, encrypted.Length);
input.Add (0x65);
}
Console.ReadLine ();
}
}
</code></pre>
<p></code></p>
http://stackoverflow.com/questions/767408/encrypted-data-size-while-using-triple-des/767426#7674264Answer by Rasmus Faber for Encrypted data size while using Triple DESRasmus Faber2009-04-20T08:41:15Z2009-04-20T08:41:15Z<p>TripleDESCryptoServiceProvider defaults to using <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.paddingmode.aspx" rel="nofollow">PKCS7-padding</a>. This pads any message to the next multiple of the block-size.</p>
<p>To avoid using padding, just set the <code>Padding</code>-property to <code>PaddingMode.None</code></p>
<pre><code>new TripleDESCryptoServiceProvider {
KeySize = keySizeInBits,
Padding = PaddingMode.None
};
</code></pre>