show/hide this revision's text 4 Show easily attacked integers

Example without hashing

Here's a simple example of passing a 64-bit integer. Just encrypt and you're open to attack. In fact, the attack is easily done, even with CBC padding.

public static void Main() {    var buff = new byte[8];    new Random().NextBytes(buff);    var v = BitConverter.ToUInt64(buff, 0);    Console.WriteLine("Value: " + v.ToString());    Console.WriteLine("Value (bytes): " + BitConverter.ToString(BitConverter.GetBytes(v)));    var aes = Aes.Create();    aes.GenerateIV();    aes.GenerateKey();    var encBytes = aes.CreateEncryptor().TransformFinalBlock(BitConverter.GetBytes(v), 0, 8);    Console.WriteLine("Encrypted: " + BitConverter.ToString(encBytes));    var dec = aes.CreateDecryptor();    Console.WriteLine("Decrypted: " + BitConverter.ToUInt64(dec.TransformFinalBlock(encBytes, 0, encBytes.Length), 0));    for (int i = 0; i < 8; i++) {        for (int x = 0; x < 250; x++) {            encBytes[i]++;            try {                Console.WriteLine("Attacked: " + BitConverter.ToUInt64(dec.TransformFinalBlock(encBytes, 0, encBytes.Length), 0));                return;            } catch { }

Output:

Value: 6598637501946607785 Value

(bytes): A9-38-19-D1-D8-11-93-5B

Encrypted:

31-59-B0-25-FD-C5-13-D7-81-D8-F5-8A-33-2A-57-DD

Decrypted: 6598637501946607785

Attacked: 14174658352338201502

So, if that's the kind of ID you're sending, it could quite easily be changed to another value. You need to authenticate outside of your message. Sometimes, the message structure is unlikely to fall into place and can sorta act as a safeguard, but why rely on something that could possibly change? You need to be able to rely on your crypto working correctly regardless of the application.

show/hide this revision's text 3 Add sample code

Sample code

Since apparently using an IV correctly is controversial for some folks, here's some code that'll generate random IVs and add them to your output for you. It'll also perform the authentication step, making sure the encrypted data wasn't modified.

using System;using System.Security.Cryptography;using System.Text;class AesDemo {    const int HASH_SIZE = 32; //SHA256    /// <summary>Performs encryption with random IV (prepended to output), and includes hash of plaintext for verification.</summary>    public static byte[] Encrypt(string password, byte[] passwordSalt, byte[] plainText) {        // Construct message with hash        var msg = new byte[HASH_SIZE + plainText.Length];        var hash = computeHash(plainText, 0, plainText.Length);        Buffer.BlockCopy(hash, 0, msg, 0, HASH_SIZE);        Buffer.BlockCopy(plainText, 0, msg, HASH_SIZE, plainText.Length);        // Encrypt        using (var aes = createAes(password, passwordSalt)) {            aes.GenerateIV();            using (var enc = aes.CreateEncryptor()) {                var encBytes = enc.TransformFinalBlock(msg, 0, msg.Length);                // Prepend IV to result                var res = new byte[aes.IV.Length + encBytes.Length];                Buffer.BlockCopy(aes.IV, 0, res, 0, aes.IV.Length);                Buffer.BlockCopy(encBytes, 0, res, aes.IV.Length, encBytes.Length);                return res;    public static byte[] Decrypt(string password, byte[] passwordSalt, byte[] cipherText) {        using (var aes = createAes(password, passwordSalt)) {            var iv = new byte[aes.IV.Length];            Buffer.BlockCopy(cipherText, 0, iv, 0, iv.Length);            aes.IV = iv; // Probably could copy right to the byte array, but that's not guaranteed            using (var dec = aes.CreateDecryptor()) {                var decBytes = dec.TransformFinalBlock(cipherText, iv.Length, cipherText.Length - iv.Length);                // Verify hash                var hash = computeHash(decBytes, HASH_SIZE, decBytes.Length - HASH_SIZE);                var existingHash = new byte[HASH_SIZE];                Buffer.BlockCopy(decBytes, 0, existingHash, 0, HASH_SIZE);                if (!compareBytes(existingHash, hash)){                    throw new CryptographicException("Message hash incorrect.");                // Hash is valid, we're done                var res = new byte[decBytes.Length - HASH_SIZE];                Buffer.BlockCopy(decBytes, HASH_SIZE, res, 0, res.Length);                return res;    static bool compareBytes(byte[] a1, byte[] a2) {        if (a1.Length != a2.Length) return false;        for (int i = 0; i < a1.Length; i++) {            if (a1[i] != a2[i]) return false;        return true;    static Aes createAes(string password, byte[] salt) {        // Salt may not be needed if password is safe        if (password.Length < 8) throw new ArgumentException("Password must be at least 8 characters.", "password");        if (salt.Length < 8) throw new ArgumentException("Salt must be at least 8 bytes.", "salt");        var pdb = new PasswordDeriveBytes(password, salt, "SHA512", 129);        var key = pdb.GetBytes(16);        var aes = Aes.Create();        aes.Mode = CipherMode.CBC;        aes.Key = pdb.GetBytes(aes.KeySize / 8);        return aes;    static byte[] computeHash(byte[] data, int offset, int count) {        using (var sha = SHA256.Create()) {            return sha.ComputeHash(data, offset, count);    public static void Main() {        var password = "1234567890!";        var salt = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };        var ct1 = Encrypt(password, salt, Encoding.UTF8.GetBytes("Alice; Bob; Eve;: PerformAct1"));        Console.WriteLine(Convert.ToBase64String(ct1));        var ct2 = Encrypt(password, salt, Encoding.UTF8.GetBytes("Alice; Bob; Eve;: PerformAct2"));        Console.WriteLine(Convert.ToBase64String(ct2));        var pt1 = Decrypt(password, salt, ct1);        Console.WriteLine(Encoding.UTF8.GetString(pt1));        var pt2 = Decrypt(password, salt, ct2);        Console.WriteLine(Encoding.UTF8.GetString(pt2));        // Now check tampering        try {            ct1[30]++;            Decrypt(password, salt, ct1);            Console.WriteLine("Error: tamper detection failed.");        } catch (Exception ex) {            Console.WriteLine("Success: tampering detected.");            Console.WriteLine(ex.ToString());

Output:

Alice; Bob; Eve;: PerformAct1 Alice; Bob; Eve;: PerformAct2 Success: tampering detected. System.Security.Cryptography.CryptographicException: Message hash incorrect. at AesDemo.Decrypt(String password, Byte[] passwordSalt, Byte[] cipherText) in 46 at AesDemo.Main() in 100

After removing the random IV and the hash, here's the type of output:

tZfHJSFTXYX8V38AqEfYVcf9a3U8vIEk1LuqGEyRZXM=

Notice how the first block, corresponding to "Alice; Bob; Eve;" is the same. "Corner case" indeed.

show/hide this revision's text 2 Add timing info

Timing/replay

Edit: Sorry for not mentioning this earlier :P. You also need to make sure you have an anti-replay system. If you simply encrypt the message and pass it around, anyone who gets the message can just resend it. To avoid this, you should add a timestamp to the message. If the timestamp is different by a certain threshold, reject the message. You may also want to include a one-time ID with it (this could be the IV) and reject time-valid messages that come from other IPs using the same ID.

It's important to make sure you do the hash verification when you include the timing information. Otherwise, someone could tamper with a bit of the ciphertext and potentially generate a valid timestamp if you don't detect such brute force attempts.

show/hide this revision's text 1