1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Utilities;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Encoders;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines
- {
- /// <summary>
- /// Implementation of the Threefish tweakable large block cipher in 256, 512 and 1024 bit block
- /// sizes.
- /// </summary>
- /// <remarks>
- /// This is the 1.3 version of Threefish defined in the Skein hash function submission to the NIST
- /// SHA-3 competition in October 2010.
- /// <p/>
- /// Threefish was designed by Niels Ferguson - Stefan Lucks - Bruce Schneier - Doug Whiting - Mihir
- /// Bellare - Tadayoshi Kohno - Jon Callas - Jesse Walker.
- /// <p/>
- /// This implementation inlines all round functions, unrolls 8 rounds, and uses 1.2k of static tables
- /// to speed up key schedule injection. <br/>
- /// 2 x block size state is retained by each cipher instance.
- /// </remarks>
- public class ThreefishEngine
- : IBlockCipher
- {
- /// <summary>
- /// 256 bit block size - Threefish-256
- /// </summary>
- public const int BLOCKSIZE_256 = 256;
- /// <summary>
- /// 512 bit block size - Threefish-512
- /// </summary>
- public const int BLOCKSIZE_512 = 512;
- /// <summary>
- /// 1024 bit block size - Threefish-1024
- /// </summary>
- public const int BLOCKSIZE_1024 = 1024;
- /**
- * Size of the tweak in bytes (always 128 bit/16 bytes)
- */
- private const int TWEAK_SIZE_BYTES = 16;
- private const int TWEAK_SIZE_WORDS = TWEAK_SIZE_BYTES / 8;
- /**
- * Rounds in Threefish-256
- */
- private const int ROUNDS_256 = 72;
- /**
- * Rounds in Threefish-512
- */
- private const int ROUNDS_512 = 72;
- /**
- * Rounds in Threefish-1024
- */
- private const int ROUNDS_1024 = 80;
- /**
- * Max rounds of any of the variants
- */
- private const int MAX_ROUNDS = ROUNDS_1024;
- /**
- * Key schedule parity constant
- */
- private const ulong C_240 = 0x1BD11BDAA9FC1A22L;
- /* Pre-calculated modulo arithmetic tables for key schedule lookups */
- private static readonly int[] MOD9 = new int[MAX_ROUNDS];
- private static readonly int[] MOD17 = new int[MOD9.Length];
- private static readonly int[] MOD5 = new int[MOD9.Length];
- private static readonly int[] MOD3 = new int[MOD9.Length];
- static ThreefishEngine()
- {
- for (int i = 0; i < MOD9.Length; i++)
- {
- MOD17[i] = i % 17;
- MOD9[i] = i % 9;
- MOD5[i] = i % 5;
- MOD3[i] = i % 3;
- }
- }
- /**
- * Block size in bytes
- */
- private readonly int blocksizeBytes;
- /**
- * Block size in 64 bit words
- */
- private readonly int blocksizeWords;
- /**
- * Buffer for byte oriented processBytes to call internal word API
- */
- private readonly ulong[] currentBlock;
- /**
- * Tweak bytes (2 byte t1,t2, calculated t3 and repeat of t1,t2 for modulo free lookup
- */
- private readonly ulong[] t = new ulong[5];
- /**
- * Key schedule words
- */
- private readonly ulong[] kw;
- /**
- * The internal cipher implementation (varies by blocksize)
- */
- private readonly ThreefishCipher cipher;
- private bool forEncryption;
- /// <summary>
- /// Constructs a new Threefish cipher, with a specified block size.
- /// </summary>
- /// <param name="blocksizeBits">the block size in bits, one of <see cref="BLOCKSIZE_256"/>, <see cref="BLOCKSIZE_512"/>,
- /// <see cref="BLOCKSIZE_1024"/> .</param>
- public ThreefishEngine(int blocksizeBits)
- {
- this.blocksizeBytes = (blocksizeBits / 8);
- this.blocksizeWords = (this.blocksizeBytes / 8);
- this.currentBlock = new ulong[blocksizeWords];
- /*
- * Provide room for original key words, extended key word and repeat of key words for modulo
- * free lookup of key schedule words.
- */
- this.kw = new ulong[2 * blocksizeWords + 1];
- switch (blocksizeBits)
- {
- case BLOCKSIZE_256:
- cipher = new Threefish256Cipher(kw, t);
- break;
- case BLOCKSIZE_512:
- cipher = new Threefish512Cipher(kw, t);
- break;
- case BLOCKSIZE_1024:
- cipher = new Threefish1024Cipher(kw, t);
- break;
- default:
- throw new ArgumentException(
- "Invalid blocksize - Threefish is defined with block size of 256, 512, or 1024 bits");
- }
- }
- /// <summary>
- /// Initialise the engine.
- /// </summary>
- /// <param name="forEncryption">Initialise for encryption if true, for decryption if false.</param>
- /// <param name="parameters">an instance of <see cref="TweakableBlockCipherParameters"/> or <see cref="KeyParameter"/> (to
- /// use a 0 tweak)</param>
- public virtual void Init(bool forEncryption, ICipherParameters parameters)
- {
- byte[] keyBytes;
- byte[] tweakBytes;
- if (parameters is TweakableBlockCipherParameters)
- {
- TweakableBlockCipherParameters tParams = (TweakableBlockCipherParameters)parameters;
- keyBytes = tParams.Key.GetKey();
- tweakBytes = tParams.Tweak;
- }
- else if (parameters is KeyParameter)
- {
- keyBytes = ((KeyParameter)parameters).GetKey();
- tweakBytes = null;
- }
- else
- {
- throw new ArgumentException("Invalid parameter passed to Threefish init - "
- + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(parameters));
- }
- ulong[] keyWords = null;
- ulong[] tweakWords = null;
- if (keyBytes != null)
- {
- if (keyBytes.Length != this.blocksizeBytes)
- {
- throw new ArgumentException("Threefish key must be same size as block (" + blocksizeBytes
- + " bytes)");
- }
- keyWords = new ulong[blocksizeWords];
- for (int i = 0; i < keyWords.Length; i++)
- {
- keyWords[i] = BytesToWord(keyBytes, i * 8);
- }
- }
- if (tweakBytes != null)
- {
- if (tweakBytes.Length != TWEAK_SIZE_BYTES)
- {
- throw new ArgumentException("Threefish tweak must be " + TWEAK_SIZE_BYTES + " bytes");
- }
- tweakWords = new ulong[]{BytesToWord(tweakBytes, 0), BytesToWord(tweakBytes, 8)};
- }
- Init(forEncryption, keyWords, tweakWords);
- }
- /// <summary>
- /// Initialise the engine, specifying the key and tweak directly.
- /// </summary>
- /// <param name="forEncryption">the cipher mode.</param>
- /// <param name="key">the words of the key, or <code>null</code> to use the current key.</param>
- /// <param name="tweak">the 2 word (128 bit) tweak, or <code>null</code> to use the current tweak.</param>
- internal void Init(bool forEncryption, ulong[] key, ulong[] tweak)
- {
- this.forEncryption = forEncryption;
- if (key != null)
- {
- SetKey(key);
- }
- if (tweak != null)
- {
- SetTweak(tweak);
- }
- }
- private void SetKey(ulong[] key)
- {
- if (key.Length != this.blocksizeWords)
- {
- throw new ArgumentException("Threefish key must be same size as block (" + blocksizeWords
- + " words)");
- }
- /*
- * Full subkey schedule is deferred to execution to avoid per cipher overhead (10k for 512,
- * 20k for 1024).
- *
- * Key and tweak word sequences are repeated, and static MOD17/MOD9/MOD5/MOD3 calculations
- * used, to avoid expensive mod computations during cipher operation.
- */
- ulong knw = C_240;
- for (int i = 0; i < blocksizeWords; i++)
- {
- kw[i] = key[i];
- knw = knw ^ kw[i];
- }
- kw[blocksizeWords] = knw;
- Array.Copy(kw, 0, kw, blocksizeWords + 1, blocksizeWords);
- }
- private void SetTweak(ulong[] tweak)
- {
- if (tweak.Length != TWEAK_SIZE_WORDS)
- {
- throw new ArgumentException("Tweak must be " + TWEAK_SIZE_WORDS + " words.");
- }
- /*
- * Tweak schedule partially repeated to avoid mod computations during cipher operation
- */
- t[0] = tweak[0];
- t[1] = tweak[1];
- t[2] = t[0] ^ t[1];
- t[3] = t[0];
- t[4] = t[1];
- }
- public virtual string AlgorithmName
- {
- get { return "Threefish-" + (blocksizeBytes * 8); }
- }
- public virtual bool IsPartialBlockOkay
- {
- get { return false; }
- }
- public virtual int GetBlockSize()
- {
- return blocksizeBytes;
- }
- public virtual void Reset()
- {
- }
- public virtual int ProcessBlock(byte[] inBytes, int inOff, byte[] outBytes, int outOff)
- {
- if ((outOff + blocksizeBytes) > outBytes.Length)
- {
- throw new DataLengthException("Output buffer too short");
- }
- if ((inOff + blocksizeBytes) > inBytes.Length)
- {
- throw new DataLengthException("Input buffer too short");
- }
- for (int i = 0; i < blocksizeBytes; i += 8)
- {
- currentBlock[i >> 3] = BytesToWord(inBytes, inOff + i);
- }
- ProcessBlock(this.currentBlock, this.currentBlock);
- for (int i = 0; i < blocksizeBytes; i += 8)
- {
- WordToBytes(this.currentBlock[i >> 3], outBytes, outOff + i);
- }
- return blocksizeBytes;
- }
- /// <summary>
- /// Process a block of data represented as 64 bit words.
- /// </summary>
- /// <returns>the number of 8 byte words processed (which will be the same as the block size).</returns>
- /// <param name="inWords">a block sized buffer of words to process.</param>
- /// <param name="outWords">a block sized buffer of words to receive the output of the operation.</param>
- /// <exception cref="DataLengthException">if either the input or output is not block sized</exception>
- /// <exception cref="InvalidOperationException">if this engine is not initialised</exception>
- internal int ProcessBlock(ulong[] inWords, ulong[] outWords)
- {
- if (kw[blocksizeWords] == 0)
- {
- throw new InvalidOperationException("Threefish engine not initialised");
- }
- if (inWords.Length != blocksizeWords)
- {
- throw new DataLengthException("Input buffer too short");
- }
- if (outWords.Length != blocksizeWords)
- {
- throw new DataLengthException("Output buffer too short");
- }
- if (forEncryption)
- {
- cipher.EncryptBlock(inWords, outWords);
- }
- else
- {
- cipher.DecryptBlock(inWords, outWords);
- }
- return blocksizeWords;
- }
- /// <summary>
- /// Read a single 64 bit word from input in LSB first order.
- /// </summary>
- internal static ulong BytesToWord(byte[] bytes, int off)
- {
- if ((off + 8) > bytes.Length)
- {
- // Help the JIT avoid index checks
- throw new ArgumentException();
- }
- ulong word = 0;
- int index = off;
- word = (bytes[index++] & 0xffUL);
- word |= (bytes[index++] & 0xffUL) << 8;
- word |= (bytes[index++] & 0xffUL) << 16;
- word |= (bytes[index++] & 0xffUL) << 24;
- word |= (bytes[index++] & 0xffUL) << 32;
- word |= (bytes[index++] & 0xffUL) << 40;
- word |= (bytes[index++] & 0xffUL) << 48;
- word |= (bytes[index++] & 0xffUL) << 56;
- return word;
- }
- /// <summary>
- /// Write a 64 bit word to output in LSB first order.
- /// </summary>
- internal static void WordToBytes(ulong word, byte[] bytes, int off)
- {
- if ((off + 8) > bytes.Length)
- {
- // Help the JIT avoid index checks
- throw new ArgumentException();
- }
- int index = off;
- bytes[index++] = (byte)word;
- bytes[index++] = (byte)(word >> 8);
- bytes[index++] = (byte)(word >> 16);
- bytes[index++] = (byte)(word >> 24);
- bytes[index++] = (byte)(word >> 32);
- bytes[index++] = (byte)(word >> 40);
- bytes[index++] = (byte)(word >> 48);
- bytes[index++] = (byte)(word >> 56);
- }
- /**
- * Rotate left + xor part of the mix operation.
- */
- private static ulong RotlXor(ulong x, int n, ulong xor)
- {
- return ((x << n) | (x >> (64 - n))) ^ xor;
- }
- /**
- * Rotate xor + rotate right part of the unmix operation.
- */
- private static ulong XorRotr(ulong x, int n, ulong xor)
- {
- ulong xored = x ^ xor;
- return (xored >> n) | (xored << (64 - n));
- }
- private abstract class ThreefishCipher
- {
- /**
- * The extended + repeated tweak words
- */
- protected readonly ulong[] t;
- /**
- * The extended + repeated key words
- */
- protected readonly ulong[] kw;
- protected ThreefishCipher(ulong[] kw, ulong[] t)
- {
- this.kw = kw;
- this.t = t;
- }
- internal abstract void EncryptBlock(ulong[] block, ulong[] outWords);
- internal abstract void DecryptBlock(ulong[] block, ulong[] outWords);
- }
- private sealed class Threefish256Cipher
- : ThreefishCipher
- {
- /**
- * Mix rotation constants defined in Skein 1.3 specification
- */
- private const int ROTATION_0_0 = 14, ROTATION_0_1 = 16;
- private const int ROTATION_1_0 = 52, ROTATION_1_1 = 57;
- private const int ROTATION_2_0 = 23, ROTATION_2_1 = 40;
- private const int ROTATION_3_0 = 5, ROTATION_3_1 = 37;
- private const int ROTATION_4_0 = 25, ROTATION_4_1 = 33;
- private const int ROTATION_5_0 = 46, ROTATION_5_1 = 12;
- private const int ROTATION_6_0 = 58, ROTATION_6_1 = 22;
- private const int ROTATION_7_0 = 32, ROTATION_7_1 = 32;
- public Threefish256Cipher(ulong[] kw, ulong[] t)
- : base(kw, t)
- {
- }
- internal override void EncryptBlock(ulong[] block, ulong[] outWords)
- {
- ulong[] kw = this.kw;
- ulong[] t = this.t;
- int[] mod5 = MOD5;
- int[] mod3 = MOD3;
- /* Help the JIT avoid index bounds checks */
- if (kw.Length != 9)
- {
- throw new ArgumentException();
- }
- if (t.Length != 5)
- {
- throw new ArgumentException();
- }
- /*
- * Read 4 words of plaintext data, not using arrays for cipher state
- */
- ulong b0 = block[0];
- ulong b1 = block[1];
- ulong b2 = block[2];
- ulong b3 = block[3];
- /*
- * First subkey injection.
- */
- b0 += kw[0];
- b1 += kw[1] + t[0];
- b2 += kw[2] + t[1];
- b3 += kw[3];
- /*
- * Rounds loop, unrolled to 8 rounds per iteration.
- *
- * Unrolling to multiples of 4 avoids the mod 4 check for key injection, and allows
- * inlining of the permutations, which cycle every of 2 rounds (avoiding array
- * index/lookup).
- *
- * Unrolling to multiples of 8 avoids the mod 8 rotation constant lookup, and allows
- * inlining constant rotation values (avoiding array index/lookup).
- */
- for (int d = 1; d < (ROUNDS_256 / 4); d += 2)
- {
- int dm5 = mod5[d];
- int dm3 = mod3[d];
- /*
- * 4 rounds of mix and permute.
- *
- * Permute schedule has a 2 round cycle, so permutes are inlined in the mix
- * operations in each 4 round block.
- */
- b1 = RotlXor(b1, ROTATION_0_0, b0 += b1);
- b3 = RotlXor(b3, ROTATION_0_1, b2 += b3);
- b3 = RotlXor(b3, ROTATION_1_0, b0 += b3);
- b1 = RotlXor(b1, ROTATION_1_1, b2 += b1);
- b1 = RotlXor(b1, ROTATION_2_0, b0 += b1);
- b3 = RotlXor(b3, ROTATION_2_1, b2 += b3);
- b3 = RotlXor(b3, ROTATION_3_0, b0 += b3);
- b1 = RotlXor(b1, ROTATION_3_1, b2 += b1);
- /*
- * Subkey injection for first 4 rounds.
- */
- b0 += kw[dm5];
- b1 += kw[dm5 + 1] + t[dm3];
- b2 += kw[dm5 + 2] + t[dm3 + 1];
- b3 += kw[dm5 + 3] + (uint)d;
- /*
- * 4 more rounds of mix/permute
- */
- b1 = RotlXor(b1, ROTATION_4_0, b0 += b1);
- b3 = RotlXor(b3, ROTATION_4_1, b2 += b3);
- b3 = RotlXor(b3, ROTATION_5_0, b0 += b3);
- b1 = RotlXor(b1, ROTATION_5_1, b2 += b1);
- b1 = RotlXor(b1, ROTATION_6_0, b0 += b1);
- b3 = RotlXor(b3, ROTATION_6_1, b2 += b3);
- b3 = RotlXor(b3, ROTATION_7_0, b0 += b3);
- b1 = RotlXor(b1, ROTATION_7_1, b2 += b1);
- /*
- * Subkey injection for next 4 rounds.
- */
- b0 += kw[dm5 + 1];
- b1 += kw[dm5 + 2] + t[dm3 + 1];
- b2 += kw[dm5 + 3] + t[dm3 + 2];
- b3 += kw[dm5 + 4] + (uint)d + 1;
- }
- /*
- * Output cipher state.
- */
- outWords[0] = b0;
- outWords[1] = b1;
- outWords[2] = b2;
- outWords[3] = b3;
- }
- internal override void DecryptBlock(ulong[] block, ulong[] state)
- {
- ulong[] kw = this.kw;
- ulong[] t = this.t;
- int[] mod5 = MOD5;
- int[] mod3 = MOD3;
- /* Help the JIT avoid index bounds checks */
- if (kw.Length != 9)
- {
- throw new ArgumentException();
- }
- if (t.Length != 5)
- {
- throw new ArgumentException();
- }
- ulong b0 = block[0];
- ulong b1 = block[1];
- ulong b2 = block[2];
- ulong b3 = block[3];
- for (int d = (ROUNDS_256 / 4) - 1; d >= 1; d -= 2)
- {
- int dm5 = mod5[d];
- int dm3 = mod3[d];
- /* Reverse key injection for second 4 rounds */
- b0 -= kw[dm5 + 1];
- b1 -= kw[dm5 + 2] + t[dm3 + 1];
- b2 -= kw[dm5 + 3] + t[dm3 + 2];
- b3 -= kw[dm5 + 4] + (uint)d + 1;
- /* Reverse second 4 mix/permute rounds */
- b3 = XorRotr(b3, ROTATION_7_0, b0);
- b0 -= b3;
- b1 = XorRotr(b1, ROTATION_7_1, b2);
- b2 -= b1;
- b1 = XorRotr(b1, ROTATION_6_0, b0);
- b0 -= b1;
- b3 = XorRotr(b3, ROTATION_6_1, b2);
- b2 -= b3;
- b3 = XorRotr(b3, ROTATION_5_0, b0);
- b0 -= b3;
- b1 = XorRotr(b1, ROTATION_5_1, b2);
- b2 -= b1;
- b1 = XorRotr(b1, ROTATION_4_0, b0);
- b0 -= b1;
- b3 = XorRotr(b3, ROTATION_4_1, b2);
- b2 -= b3;
- /* Reverse key injection for first 4 rounds */
- b0 -= kw[dm5];
- b1 -= kw[dm5 + 1] + t[dm3];
- b2 -= kw[dm5 + 2] + t[dm3 + 1];
- b3 -= kw[dm5 + 3] + (uint)d;
- /* Reverse first 4 mix/permute rounds */
- b3 = XorRotr(b3, ROTATION_3_0, b0);
- b0 -= b3;
- b1 = XorRotr(b1, ROTATION_3_1, b2);
- b2 -= b1;
- b1 = XorRotr(b1, ROTATION_2_0, b0);
- b0 -= b1;
- b3 = XorRotr(b3, ROTATION_2_1, b2);
- b2 -= b3;
- b3 = XorRotr(b3, ROTATION_1_0, b0);
- b0 -= b3;
- b1 = XorRotr(b1, ROTATION_1_1, b2);
- b2 -= b1;
- b1 = XorRotr(b1, ROTATION_0_0, b0);
- b0 -= b1;
- b3 = XorRotr(b3, ROTATION_0_1, b2);
- b2 -= b3;
- }
- /*
- * First subkey uninjection.
- */
- b0 -= kw[0];
- b1 -= kw[1] + t[0];
- b2 -= kw[2] + t[1];
- b3 -= kw[3];
- /*
- * Output cipher state.
- */
- state[0] = b0;
- state[1] = b1;
- state[2] = b2;
- state[3] = b3;
- }
- }
- private sealed class Threefish512Cipher
- : ThreefishCipher
- {
- /**
- * Mix rotation constants defined in Skein 1.3 specification
- */
- private const int ROTATION_0_0 = 46, ROTATION_0_1 = 36, ROTATION_0_2 = 19, ROTATION_0_3 = 37;
- private const int ROTATION_1_0 = 33, ROTATION_1_1 = 27, ROTATION_1_2 = 14, ROTATION_1_3 = 42;
- private const int ROTATION_2_0 = 17, ROTATION_2_1 = 49, ROTATION_2_2 = 36, ROTATION_2_3 = 39;
- private const int ROTATION_3_0 = 44, ROTATION_3_1 = 9, ROTATION_3_2 = 54, ROTATION_3_3 = 56;
- private const int ROTATION_4_0 = 39, ROTATION_4_1 = 30, ROTATION_4_2 = 34, ROTATION_4_3 = 24;
- private const int ROTATION_5_0 = 13, ROTATION_5_1 = 50, ROTATION_5_2 = 10, ROTATION_5_3 = 17;
- private const int ROTATION_6_0 = 25, ROTATION_6_1 = 29, ROTATION_6_2 = 39, ROTATION_6_3 = 43;
- private const int ROTATION_7_0 = 8, ROTATION_7_1 = 35, ROTATION_7_2 = 56, ROTATION_7_3 = 22;
- internal Threefish512Cipher(ulong[] kw, ulong[] t)
- : base(kw, t)
- {
- }
- internal override void EncryptBlock(ulong[] block, ulong[] outWords)
- {
- ulong[] kw = this.kw;
- ulong[] t = this.t;
- int[] mod9 = MOD9;
- int[] mod3 = MOD3;
- /* Help the JIT avoid index bounds checks */
- if (kw.Length != 17)
- {
- throw new ArgumentException();
- }
- if (t.Length != 5)
- {
- throw new ArgumentException();
- }
- /*
- * Read 8 words of plaintext data, not using arrays for cipher state
- */
- ulong b0 = block[0];
- ulong b1 = block[1];
- ulong b2 = block[2];
- ulong b3 = block[3];
- ulong b4 = block[4];
- ulong b5 = block[5];
- ulong b6 = block[6];
- ulong b7 = block[7];
- /*
- * First subkey injection.
- */
- b0 += kw[0];
- b1 += kw[1];
- b2 += kw[2];
- b3 += kw[3];
- b4 += kw[4];
- b5 += kw[5] + t[0];
- b6 += kw[6] + t[1];
- b7 += kw[7];
- /*
- * Rounds loop, unrolled to 8 rounds per iteration.
- *
- * Unrolling to multiples of 4 avoids the mod 4 check for key injection, and allows
- * inlining of the permutations, which cycle every of 4 rounds (avoiding array
- * index/lookup).
- *
- * Unrolling to multiples of 8 avoids the mod 8 rotation constant lookup, and allows
- * inlining constant rotation values (avoiding array index/lookup).
- */
- for (int d = 1; d < (ROUNDS_512 / 4); d += 2)
- {
- int dm9 = mod9[d];
- int dm3 = mod3[d];
- /*
- * 4 rounds of mix and permute.
- *
- * Permute schedule has a 4 round cycle, so permutes are inlined in the mix
- * operations in each 4 round block.
- */
- b1 = RotlXor(b1, ROTATION_0_0, b0 += b1);
- b3 = RotlXor(b3, ROTATION_0_1, b2 += b3);
- b5 = RotlXor(b5, ROTATION_0_2, b4 += b5);
- b7 = RotlXor(b7, ROTATION_0_3, b6 += b7);
- b1 = RotlXor(b1, ROTATION_1_0, b2 += b1);
- b7 = RotlXor(b7, ROTATION_1_1, b4 += b7);
- b5 = RotlXor(b5, ROTATION_1_2, b6 += b5);
- b3 = RotlXor(b3, ROTATION_1_3, b0 += b3);
- b1 = RotlXor(b1, ROTATION_2_0, b4 += b1);
- b3 = RotlXor(b3, ROTATION_2_1, b6 += b3);
- b5 = RotlXor(b5, ROTATION_2_2, b0 += b5);
- b7 = RotlXor(b7, ROTATION_2_3, b2 += b7);
- b1 = RotlXor(b1, ROTATION_3_0, b6 += b1);
- b7 = RotlXor(b7, ROTATION_3_1, b0 += b7);
- b5 = RotlXor(b5, ROTATION_3_2, b2 += b5);
- b3 = RotlXor(b3, ROTATION_3_3, b4 += b3);
- /*
- * Subkey injection for first 4 rounds.
- */
- b0 += kw[dm9];
- b1 += kw[dm9 + 1];
- b2 += kw[dm9 + 2];
- b3 += kw[dm9 + 3];
- b4 += kw[dm9 + 4];
- b5 += kw[dm9 + 5] + t[dm3];
- b6 += kw[dm9 + 6] + t[dm3 + 1];
- b7 += kw[dm9 + 7] + (uint)d;
- /*
- * 4 more rounds of mix/permute
- */
- b1 = RotlXor(b1, ROTATION_4_0, b0 += b1);
- b3 = RotlXor(b3, ROTATION_4_1, b2 += b3);
- b5 = RotlXor(b5, ROTATION_4_2, b4 += b5);
- b7 = RotlXor(b7, ROTATION_4_3, b6 += b7);
- b1 = RotlXor(b1, ROTATION_5_0, b2 += b1);
- b7 = RotlXor(b7, ROTATION_5_1, b4 += b7);
- b5 = RotlXor(b5, ROTATION_5_2, b6 += b5);
- b3 = RotlXor(b3, ROTATION_5_3, b0 += b3);
- b1 = RotlXor(b1, ROTATION_6_0, b4 += b1);
- b3 = RotlXor(b3, ROTATION_6_1, b6 += b3);
- b5 = RotlXor(b5, ROTATION_6_2, b0 += b5);
- b7 = RotlXor(b7, ROTATION_6_3, b2 += b7);
- b1 = RotlXor(b1, ROTATION_7_0, b6 += b1);
- b7 = RotlXor(b7, ROTATION_7_1, b0 += b7);
- b5 = RotlXor(b5, ROTATION_7_2, b2 += b5);
- b3 = RotlXor(b3, ROTATION_7_3, b4 += b3);
- /*
- * Subkey injection for next 4 rounds.
- */
- b0 += kw[dm9 + 1];
- b1 += kw[dm9 + 2];
- b2 += kw[dm9 + 3];
- b3 += kw[dm9 + 4];
- b4 += kw[dm9 + 5];
- b5 += kw[dm9 + 6] + t[dm3 + 1];
- b6 += kw[dm9 + 7] + t[dm3 + 2];
- b7 += kw[dm9 + 8] + (uint)d + 1;
- }
- /*
- * Output cipher state.
- */
- outWords[0] = b0;
- outWords[1] = b1;
- outWords[2] = b2;
- outWords[3] = b3;
- outWords[4] = b4;
- outWords[5] = b5;
- outWords[6] = b6;
- outWords[7] = b7;
- }
- internal override void DecryptBlock(ulong[] block, ulong[] state)
- {
- ulong[] kw = this.kw;
- ulong[] t = this.t;
- int[] mod9 = MOD9;
- int[] mod3 = MOD3;
- /* Help the JIT avoid index bounds checks */
- if (kw.Length != 17)
- {
- throw new ArgumentException();
- }
- if (t.Length != 5)
- {
- throw new ArgumentException();
- }
- ulong b0 = block[0];
- ulong b1 = block[1];
- ulong b2 = block[2];
- ulong b3 = block[3];
- ulong b4 = block[4];
- ulong b5 = block[5];
- ulong b6 = block[6];
- ulong b7 = block[7];
- for (int d = (ROUNDS_512 / 4) - 1; d >= 1; d -= 2)
- {
- int dm9 = mod9[d];
- int dm3 = mod3[d];
- /* Reverse key injection for second 4 rounds */
- b0 -= kw[dm9 + 1];
- b1 -= kw[dm9 + 2];
- b2 -= kw[dm9 + 3];
- b3 -= kw[dm9 + 4];
- b4 -= kw[dm9 + 5];
- b5 -= kw[dm9 + 6] + t[dm3 + 1];
- b6 -= kw[dm9 + 7] + t[dm3 + 2];
- b7 -= kw[dm9 + 8] + (uint)d + 1;
- /* Reverse second 4 mix/permute rounds */
- b1 = XorRotr(b1, ROTATION_7_0, b6);
- b6 -= b1;
- b7 = XorRotr(b7, ROTATION_7_1, b0);
- b0 -= b7;
- b5 = XorRotr(b5, ROTATION_7_2, b2);
- b2 -= b5;
- b3 = XorRotr(b3, ROTATION_7_3, b4);
- b4 -= b3;
- b1 = XorRotr(b1, ROTATION_6_0, b4);
- b4 -= b1;
- b3 = XorRotr(b3, ROTATION_6_1, b6);
- b6 -= b3;
- b5 = XorRotr(b5, ROTATION_6_2, b0);
- b0 -= b5;
- b7 = XorRotr(b7, ROTATION_6_3, b2);
- b2 -= b7;
- b1 = XorRotr(b1, ROTATION_5_0, b2);
- b2 -= b1;
- b7 = XorRotr(b7, ROTATION_5_1, b4);
- b4 -= b7;
- b5 = XorRotr(b5, ROTATION_5_2, b6);
- b6 -= b5;
- b3 = XorRotr(b3, ROTATION_5_3, b0);
- b0 -= b3;
- b1 = XorRotr(b1, ROTATION_4_0, b0);
- b0 -= b1;
- b3 = XorRotr(b3, ROTATION_4_1, b2);
- b2 -= b3;
- b5 = XorRotr(b5, ROTATION_4_2, b4);
- b4 -= b5;
- b7 = XorRotr(b7, ROTATION_4_3, b6);
- b6 -= b7;
- /* Reverse key injection for first 4 rounds */
- b0 -= kw[dm9];
- b1 -= kw[dm9 + 1];
- b2 -= kw[dm9 + 2];
- b3 -= kw[dm9 + 3];
- b4 -= kw[dm9 + 4];
- b5 -= kw[dm9 + 5] + t[dm3];
- b6 -= kw[dm9 + 6] + t[dm3 + 1];
- b7 -= kw[dm9 + 7] + (uint)d;
- /* Reverse first 4 mix/permute rounds */
- b1 = XorRotr(b1, ROTATION_3_0, b6);
- b6 -= b1;
- b7 = XorRotr(b7, ROTATION_3_1, b0);
- b0 -= b7;
- b5 = XorRotr(b5, ROTATION_3_2, b2);
- b2 -= b5;
- b3 = XorRotr(b3, ROTATION_3_3, b4);
- b4 -= b3;
- b1 = XorRotr(b1, ROTATION_2_0, b4);
- b4 -= b1;
- b3 = XorRotr(b3, ROTATION_2_1, b6);
- b6 -= b3;
- b5 = XorRotr(b5, ROTATION_2_2, b0);
- b0 -= b5;
- b7 = XorRotr(b7, ROTATION_2_3, b2);
- b2 -= b7;
- b1 = XorRotr(b1, ROTATION_1_0, b2);
- b2 -= b1;
- b7 = XorRotr(b7, ROTATION_1_1, b4);
- b4 -= b7;
- b5 = XorRotr(b5, ROTATION_1_2, b6);
- b6 -= b5;
- b3 = XorRotr(b3, ROTATION_1_3, b0);
- b0 -= b3;
- b1 = XorRotr(b1, ROTATION_0_0, b0);
- b0 -= b1;
- b3 = XorRotr(b3, ROTATION_0_1, b2);
- b2 -= b3;
- b5 = XorRotr(b5, ROTATION_0_2, b4);
- b4 -= b5;
- b7 = XorRotr(b7, ROTATION_0_3, b6);
- b6 -= b7;
- }
- /*
- * First subkey uninjection.
- */
- b0 -= kw[0];
- b1 -= kw[1];
- b2 -= kw[2];
- b3 -= kw[3];
- b4 -= kw[4];
- b5 -= kw[5] + t[0];
- b6 -= kw[6] + t[1];
- b7 -= kw[7];
- /*
- * Output cipher state.
- */
- state[0] = b0;
- state[1] = b1;
- state[2] = b2;
- state[3] = b3;
- state[4] = b4;
- state[5] = b5;
- state[6] = b6;
- state[7] = b7;
- }
- }
- private sealed class Threefish1024Cipher
- : ThreefishCipher
- {
- /**
- * Mix rotation constants defined in Skein 1.3 specification
- */
- private const int ROTATION_0_0 = 24, ROTATION_0_1 = 13, ROTATION_0_2 = 8, ROTATION_0_3 = 47;
- private const int ROTATION_0_4 = 8, ROTATION_0_5 = 17, ROTATION_0_6 = 22, ROTATION_0_7 = 37;
- private const int ROTATION_1_0 = 38, ROTATION_1_1 = 19, ROTATION_1_2 = 10, ROTATION_1_3 = 55;
- private const int ROTATION_1_4 = 49, ROTATION_1_5 = 18, ROTATION_1_6 = 23, ROTATION_1_7 = 52;
- private const int ROTATION_2_0 = 33, ROTATION_2_1 = 4, ROTATION_2_2 = 51, ROTATION_2_3 = 13;
- private const int ROTATION_2_4 = 34, ROTATION_2_5 = 41, ROTATION_2_6 = 59, ROTATION_2_7 = 17;
- private const int ROTATION_3_0 = 5, ROTATION_3_1 = 20, ROTATION_3_2 = 48, ROTATION_3_3 = 41;
- private const int ROTATION_3_4 = 47, ROTATION_3_5 = 28, ROTATION_3_6 = 16, ROTATION_3_7 = 25;
- private const int ROTATION_4_0 = 41, ROTATION_4_1 = 9, ROTATION_4_2 = 37, ROTATION_4_3 = 31;
- private const int ROTATION_4_4 = 12, ROTATION_4_5 = 47, ROTATION_4_6 = 44, ROTATION_4_7 = 30;
- private const int ROTATION_5_0 = 16, ROTATION_5_1 = 34, ROTATION_5_2 = 56, ROTATION_5_3 = 51;
- private const int ROTATION_5_4 = 4, ROTATION_5_5 = 53, ROTATION_5_6 = 42, ROTATION_5_7 = 41;
- private const int ROTATION_6_0 = 31, ROTATION_6_1 = 44, ROTATION_6_2 = 47, ROTATION_6_3 = 46;
- private const int ROTATION_6_4 = 19, ROTATION_6_5 = 42, ROTATION_6_6 = 44, ROTATION_6_7 = 25;
- private const int ROTATION_7_0 = 9, ROTATION_7_1 = 48, ROTATION_7_2 = 35, ROTATION_7_3 = 52;
- private const int ROTATION_7_4 = 23, ROTATION_7_5 = 31, ROTATION_7_6 = 37, ROTATION_7_7 = 20;
- public Threefish1024Cipher(ulong[] kw, ulong[] t)
- : base(kw, t)
- {
- }
- internal override void EncryptBlock(ulong[] block, ulong[] outWords)
- {
- ulong[] kw = this.kw;
- ulong[] t = this.t;
- int[] mod17 = MOD17;
- int[] mod3 = MOD3;
- /* Help the JIT avoid index bounds checks */
- if (kw.Length != 33)
- {
- throw new ArgumentException();
- }
- if (t.Length != 5)
- {
- throw new ArgumentException();
- }
- /*
- * Read 16 words of plaintext data, not using arrays for cipher state
- */
- ulong b0 = block[0];
- ulong b1 = block[1];
- ulong b2 = block[2];
- ulong b3 = block[3];
- ulong b4 = block[4];
- ulong b5 = block[5];
- ulong b6 = block[6];
- ulong b7 = block[7];
- ulong b8 = block[8];
- ulong b9 = block[9];
- ulong b10 = block[10];
- ulong b11 = block[11];
- ulong b12 = block[12];
- ulong b13 = block[13];
- ulong b14 = block[14];
- ulong b15 = block[15];
- /*
- * First subkey injection.
- */
- b0 += kw[0];
- b1 += kw[1];
- b2 += kw[2];
- b3 += kw[3];
- b4 += kw[4];
- b5 += kw[5];
- b6 += kw[6];
- b7 += kw[7];
- b8 += kw[8];
- b9 += kw[9];
- b10 += kw[10];
- b11 += kw[11];
- b12 += kw[12];
- b13 += kw[13] + t[0];
- b14 += kw[14] + t[1];
- b15 += kw[15];
- /*
- * Rounds loop, unrolled to 8 rounds per iteration.
- *
- * Unrolling to multiples of 4 avoids the mod 4 check for key injection, and allows
- * inlining of the permutations, which cycle every of 4 rounds (avoiding array
- * index/lookup).
- *
- * Unrolling to multiples of 8 avoids the mod 8 rotation constant lookup, and allows
- * inlining constant rotation values (avoiding array index/lookup).
- */
- for (int d = 1; d < (ROUNDS_1024 / 4); d += 2)
- {
- int dm17 = mod17[d];
- int dm3 = mod3[d];
- /*
- * 4 rounds of mix and permute.
- *
- * Permute schedule has a 4 round cycle, so permutes are inlined in the mix
- * operations in each 4 round block.
- */
- b1 = RotlXor(b1, ROTATION_0_0, b0 += b1);
- b3 = RotlXor(b3, ROTATION_0_1, b2 += b3);
- b5 = RotlXor(b5, ROTATION_0_2, b4 += b5);
- b7 = RotlXor(b7, ROTATION_0_3, b6 += b7);
- b9 = RotlXor(b9, ROTATION_0_4, b8 += b9);
- b11 = RotlXor(b11, ROTATION_0_5, b10 += b11);
- b13 = RotlXor(b13, ROTATION_0_6, b12 += b13);
- b15 = RotlXor(b15, ROTATION_0_7, b14 += b15);
- b9 = RotlXor(b9, ROTATION_1_0, b0 += b9);
- b13 = RotlXor(b13, ROTATION_1_1, b2 += b13);
- b11 = RotlXor(b11, ROTATION_1_2, b6 += b11);
- b15 = RotlXor(b15, ROTATION_1_3, b4 += b15);
- b7 = RotlXor(b7, ROTATION_1_4, b10 += b7);
- b3 = RotlXor(b3, ROTATION_1_5, b12 += b3);
- b5 = RotlXor(b5, ROTATION_1_6, b14 += b5);
- b1 = RotlXor(b1, ROTATION_1_7, b8 += b1);
- b7 = RotlXor(b7, ROTATION_2_0, b0 += b7);
- b5 = RotlXor(b5, ROTATION_2_1, b2 += b5);
- b3 = RotlXor(b3, ROTATION_2_2, b4 += b3);
- b1 = RotlXor(b1, ROTATION_2_3, b6 += b1);
- b15 = RotlXor(b15, ROTATION_2_4, b12 += b15);
- b13 = RotlXor(b13, ROTATION_2_5, b14 += b13);
- b11 = RotlXor(b11, ROTATION_2_6, b8 += b11);
- b9 = RotlXor(b9, ROTATION_2_7, b10 += b9);
- b15 = RotlXor(b15, ROTATION_3_0, b0 += b15);
- b11 = RotlXor(b11, ROTATION_3_1, b2 += b11);
- b13 = RotlXor(b13, ROTATION_3_2, b6 += b13);
- b9 = RotlXor(b9, ROTATION_3_3, b4 += b9);
- b1 = RotlXor(b1, ROTATION_3_4, b14 += b1);
- b5 = RotlXor(b5, ROTATION_3_5, b8 += b5);
- b3 = RotlXor(b3, ROTATION_3_6, b10 += b3);
- b7 = RotlXor(b7, ROTATION_3_7, b12 += b7);
- /*
- * Subkey injection for first 4 rounds.
- */
- b0 += kw[dm17];
- b1 += kw[dm17 + 1];
- b2 += kw[dm17 + 2];
- b3 += kw[dm17 + 3];
- b4 += kw[dm17 + 4];
- b5 += kw[dm17 + 5];
- b6 += kw[dm17 + 6];
- b7 += kw[dm17 + 7];
- b8 += kw[dm17 + 8];
- b9 += kw[dm17 + 9];
- b10 += kw[dm17 + 10];
- b11 += kw[dm17 + 11];
- b12 += kw[dm17 + 12];
- b13 += kw[dm17 + 13] + t[dm3];
- b14 += kw[dm17 + 14] + t[dm3 + 1];
- b15 += kw[dm17 + 15] + (uint)d;
- /*
- * 4 more rounds of mix/permute
- */
- b1 = RotlXor(b1, ROTATION_4_0, b0 += b1);
- b3 = RotlXor(b3, ROTATION_4_1, b2 += b3);
- b5 = RotlXor(b5, ROTATION_4_2, b4 += b5);
- b7 = RotlXor(b7, ROTATION_4_3, b6 += b7);
- b9 = RotlXor(b9, ROTATION_4_4, b8 += b9);
- b11 = RotlXor(b11, ROTATION_4_5, b10 += b11);
- b13 = RotlXor(b13, ROTATION_4_6, b12 += b13);
- b15 = RotlXor(b15, ROTATION_4_7, b14 += b15);
- b9 = RotlXor(b9, ROTATION_5_0, b0 += b9);
- b13 = RotlXor(b13, ROTATION_5_1, b2 += b13);
- b11 = RotlXor(b11, ROTATION_5_2, b6 += b11);
- b15 = RotlXor(b15, ROTATION_5_3, b4 += b15);
- b7 = RotlXor(b7, ROTATION_5_4, b10 += b7);
- b3 = RotlXor(b3, ROTATION_5_5, b12 += b3);
- b5 = RotlXor(b5, ROTATION_5_6, b14 += b5);
- b1 = RotlXor(b1, ROTATION_5_7, b8 += b1);
- b7 = RotlXor(b7, ROTATION_6_0, b0 += b7);
- b5 = RotlXor(b5, ROTATION_6_1, b2 += b5);
- b3 = RotlXor(b3, ROTATION_6_2, b4 += b3);
- b1 = RotlXor(b1, ROTATION_6_3, b6 += b1);
- b15 = RotlXor(b15, ROTATION_6_4, b12 += b15);
- b13 = RotlXor(b13, ROTATION_6_5, b14 += b13);
- b11 = RotlXor(b11, ROTATION_6_6, b8 += b11);
- b9 = RotlXor(b9, ROTATION_6_7, b10 += b9);
- b15 = RotlXor(b15, ROTATION_7_0, b0 += b15);
- b11 = RotlXor(b11, ROTATION_7_1, b2 += b11);
- b13 = RotlXor(b13, ROTATION_7_2, b6 += b13);
- b9 = RotlXor(b9, ROTATION_7_3, b4 += b9);
- b1 = RotlXor(b1, ROTATION_7_4, b14 += b1);
- b5 = RotlXor(b5, ROTATION_7_5, b8 += b5);
- b3 = RotlXor(b3, ROTATION_7_6, b10 += b3);
- b7 = RotlXor(b7, ROTATION_7_7, b12 += b7);
- /*
- * Subkey injection for next 4 rounds.
- */
- b0 += kw[dm17 + 1];
- b1 += kw[dm17 + 2];
- b2 += kw[dm17 + 3];
- b3 += kw[dm17 + 4];
- b4 += kw[dm17 + 5];
- b5 += kw[dm17 + 6];
- b6 += kw[dm17 + 7];
- b7 += kw[dm17 + 8];
- b8 += kw[dm17 + 9];
- b9 += kw[dm17 + 10];
- b10 += kw[dm17 + 11];
- b11 += kw[dm17 + 12];
- b12 += kw[dm17 + 13];
- b13 += kw[dm17 + 14] + t[dm3 + 1];
- b14 += kw[dm17 + 15] + t[dm3 + 2];
- b15 += kw[dm17 + 16] + (uint)d + 1;
- }
- /*
- * Output cipher state.
- */
- outWords[0] = b0;
- outWords[1] = b1;
- outWords[2] = b2;
- outWords[3] = b3;
- outWords[4] = b4;
- outWords[5] = b5;
- outWords[6] = b6;
- outWords[7] = b7;
- outWords[8] = b8;
- outWords[9] = b9;
- outWords[10] = b10;
- outWords[11] = b11;
- outWords[12] = b12;
- outWords[13] = b13;
- outWords[14] = b14;
- outWords[15] = b15;
- }
- internal override void DecryptBlock(ulong[] block, ulong[] state)
- {
- ulong[] kw = this.kw;
- ulong[] t = this.t;
- int[] mod17 = MOD17;
- int[] mod3 = MOD3;
- /* Help the JIT avoid index bounds checks */
- if (kw.Length != 33)
- {
- throw new ArgumentException();
- }
- if (t.Length != 5)
- {
- throw new ArgumentException();
- }
- ulong b0 = block[0];
- ulong b1 = block[1];
- ulong b2 = block[2];
- ulong b3 = block[3];
- ulong b4 = block[4];
- ulong b5 = block[5];
- ulong b6 = block[6];
- ulong b7 = block[7];
- ulong b8 = block[8];
- ulong b9 = block[9];
- ulong b10 = block[10];
- ulong b11 = block[11];
- ulong b12 = block[12];
- ulong b13 = block[13];
- ulong b14 = block[14];
- ulong b15 = block[15];
- for (int d = (ROUNDS_1024 / 4) - 1; d >= 1; d -= 2)
- {
- int dm17 = mod17[d];
- int dm3 = mod3[d];
- /* Reverse key injection for second 4 rounds */
- b0 -= kw[dm17 + 1];
- b1 -= kw[dm17 + 2];
- b2 -= kw[dm17 + 3];
- b3 -= kw[dm17 + 4];
- b4 -= kw[dm17 + 5];
- b5 -= kw[dm17 + 6];
- b6 -= kw[dm17 + 7];
- b7 -= kw[dm17 + 8];
- b8 -= kw[dm17 + 9];
- b9 -= kw[dm17 + 10];
- b10 -= kw[dm17 + 11];
- b11 -= kw[dm17 + 12];
- b12 -= kw[dm17 + 13];
- b13 -= kw[dm17 + 14] + t[dm3 + 1];
- b14 -= kw[dm17 + 15] + t[dm3 + 2];
- b15 -= kw[dm17 + 16] + (uint)d + 1;
- /* Reverse second 4 mix/permute rounds */
- b15 = XorRotr(b15, ROTATION_7_0, b0);
- b0 -= b15;
- b11 = XorRotr(b11, ROTATION_7_1, b2);
- b2 -= b11;
- b13 = XorRotr(b13, ROTATION_7_2, b6);
- b6 -= b13;
- b9 = XorRotr(b9, ROTATION_7_3, b4);
- b4 -= b9;
- b1 = XorRotr(b1, ROTATION_7_4, b14);
- b14 -= b1;
- b5 = XorRotr(b5, ROTATION_7_5, b8);
- b8 -= b5;
- b3 = XorRotr(b3, ROTATION_7_6, b10);
- b10 -= b3;
- b7 = XorRotr(b7, ROTATION_7_7, b12);
- b12 -= b7;
- b7 = XorRotr(b7, ROTATION_6_0, b0);
- b0 -= b7;
- b5 = XorRotr(b5, ROTATION_6_1, b2);
- b2 -= b5;
- b3 = XorRotr(b3, ROTATION_6_2, b4);
- b4 -= b3;
- b1 = XorRotr(b1, ROTATION_6_3, b6);
- b6 -= b1;
- b15 = XorRotr(b15, ROTATION_6_4, b12);
- b12 -= b15;
- b13 = XorRotr(b13, ROTATION_6_5, b14);
- b14 -= b13;
- b11 = XorRotr(b11, ROTATION_6_6, b8);
- b8 -= b11;
- b9 = XorRotr(b9, ROTATION_6_7, b10);
- b10 -= b9;
- b9 = XorRotr(b9, ROTATION_5_0, b0);
- b0 -= b9;
- b13 = XorRotr(b13, ROTATION_5_1, b2);
- b2 -= b13;
- b11 = XorRotr(b11, ROTATION_5_2, b6);
- b6 -= b11;
- b15 = XorRotr(b15, ROTATION_5_3, b4);
- b4 -= b15;
- b7 = XorRotr(b7, ROTATION_5_4, b10);
- b10 -= b7;
- b3 = XorRotr(b3, ROTATION_5_5, b12);
- b12 -= b3;
- b5 = XorRotr(b5, ROTATION_5_6, b14);
- b14 -= b5;
- b1 = XorRotr(b1, ROTATION_5_7, b8);
- b8 -= b1;
- b1 = XorRotr(b1, ROTATION_4_0, b0);
- b0 -= b1;
- b3 = XorRotr(b3, ROTATION_4_1, b2);
- b2 -= b3;
- b5 = XorRotr(b5, ROTATION_4_2, b4);
- b4 -= b5;
- b7 = XorRotr(b7, ROTATION_4_3, b6);
- b6 -= b7;
- b9 = XorRotr(b9, ROTATION_4_4, b8);
- b8 -= b9;
- b11 = XorRotr(b11, ROTATION_4_5, b10);
- b10 -= b11;
- b13 = XorRotr(b13, ROTATION_4_6, b12);
- b12 -= b13;
- b15 = XorRotr(b15, ROTATION_4_7, b14);
- b14 -= b15;
- /* Reverse key injection for first 4 rounds */
- b0 -= kw[dm17];
- b1 -= kw[dm17 + 1];
- b2 -= kw[dm17 + 2];
- b3 -= kw[dm17 + 3];
- b4 -= kw[dm17 + 4];
- b5 -= kw[dm17 + 5];
- b6 -= kw[dm17 + 6];
- b7 -= kw[dm17 + 7];
- b8 -= kw[dm17 + 8];
- b9 -= kw[dm17 + 9];
- b10 -= kw[dm17 + 10];
- b11 -= kw[dm17 + 11];
- b12 -= kw[dm17 + 12];
- b13 -= kw[dm17 + 13] + t[dm3];
- b14 -= kw[dm17 + 14] + t[dm3 + 1];
- b15 -= kw[dm17 + 15] + (uint)d;
- /* Reverse first 4 mix/permute rounds */
- b15 = XorRotr(b15, ROTATION_3_0, b0);
- b0 -= b15;
- b11 = XorRotr(b11, ROTATION_3_1, b2);
- b2 -= b11;
- b13 = XorRotr(b13, ROTATION_3_2, b6);
- b6 -= b13;
- b9 = XorRotr(b9, ROTATION_3_3, b4);
- b4 -= b9;
- b1 = XorRotr(b1, ROTATION_3_4, b14);
- b14 -= b1;
- b5 = XorRotr(b5, ROTATION_3_5, b8);
- b8 -= b5;
- b3 = XorRotr(b3, ROTATION_3_6, b10);
- b10 -= b3;
- b7 = XorRotr(b7, ROTATION_3_7, b12);
- b12 -= b7;
- b7 = XorRotr(b7, ROTATION_2_0, b0);
- b0 -= b7;
- b5 = XorRotr(b5, ROTATION_2_1, b2);
- b2 -= b5;
- b3 = XorRotr(b3, ROTATION_2_2, b4);
- b4 -= b3;
- b1 = XorRotr(b1, ROTATION_2_3, b6);
- b6 -= b1;
- b15 = XorRotr(b15, ROTATION_2_4, b12);
- b12 -= b15;
- b13 = XorRotr(b13, ROTATION_2_5, b14);
- b14 -= b13;
- b11 = XorRotr(b11, ROTATION_2_6, b8);
- b8 -= b11;
- b9 = XorRotr(b9, ROTATION_2_7, b10);
- b10 -= b9;
- b9 = XorRotr(b9, ROTATION_1_0, b0);
- b0 -= b9;
- b13 = XorRotr(b13, ROTATION_1_1, b2);
- b2 -= b13;
- b11 = XorRotr(b11, ROTATION_1_2, b6);
- b6 -= b11;
- b15 = XorRotr(b15, ROTATION_1_3, b4);
- b4 -= b15;
- b7 = XorRotr(b7, ROTATION_1_4, b10);
- b10 -= b7;
- b3 = XorRotr(b3, ROTATION_1_5, b12);
- b12 -= b3;
- b5 = XorRotr(b5, ROTATION_1_6, b14);
- b14 -= b5;
- b1 = XorRotr(b1, ROTATION_1_7, b8);
- b8 -= b1;
- b1 = XorRotr(b1, ROTATION_0_0, b0);
- b0 -= b1;
- b3 = XorRotr(b3, ROTATION_0_1, b2);
- b2 -= b3;
- b5 = XorRotr(b5, ROTATION_0_2, b4);
- b4 -= b5;
- b7 = XorRotr(b7, ROTATION_0_3, b6);
- b6 -= b7;
- b9 = XorRotr(b9, ROTATION_0_4, b8);
- b8 -= b9;
- b11 = XorRotr(b11, ROTATION_0_5, b10);
- b10 -= b11;
- b13 = XorRotr(b13, ROTATION_0_6, b12);
- b12 -= b13;
- b15 = XorRotr(b15, ROTATION_0_7, b14);
- b14 -= b15;
- }
- /*
- * First subkey uninjection.
- */
- b0 -= kw[0];
- b1 -= kw[1];
- b2 -= kw[2];
- b3 -= kw[3];
- b4 -= kw[4];
- b5 -= kw[5];
- b6 -= kw[6];
- b7 -= kw[7];
- b8 -= kw[8];
- b9 -= kw[9];
- b10 -= kw[10];
- b11 -= kw[11];
- b12 -= kw[12];
- b13 -= kw[13] + t[0];
- b14 -= kw[14] + t[1];
- b15 -= kw[15];
- /*
- * Output cipher state.
- */
- state[0] = b0;
- state[1] = b1;
- state[2] = b2;
- state[3] = b3;
- state[4] = b4;
- state[5] = b5;
- state[6] = b6;
- state[7] = b7;
- state[8] = b8;
- state[9] = b9;
- state[10] = b10;
- state[11] = b11;
- state[12] = b12;
- state[13] = b13;
- state[14] = b14;
- state[15] = b15;
- }
- }
- }
- }
- #pragma warning restore
- #endif
|