summary refs log tree commit diff
path: root/crypto/src/crypto/engines/ChaChaEngine.cs
blob: 46b59ed2e86273178c8f4c0330e46f39f7be020d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
using System;
using Org.BouncyCastle.Crypto.Utilities;

namespace Org.BouncyCastle.Crypto.Engines
{
	/// <summary>
	/// Implementation of Daniel J. Bernstein's ChaCha stream cipher.
	/// </summary>
	public class ChaChaEngine
		: Salsa20Engine
	{

		/// <summary>
		/// Creates a 20 rounds ChaCha engine.
		/// </summary>
		public ChaChaEngine()
		{
		}

		/// <summary>
		/// Creates a ChaCha engine with a specific number of rounds.
		/// </summary>
		/// <param name="rounds">the number of rounds (must be an even number).</param>
		public ChaChaEngine(int rounds)
			: base(rounds)
		{
		}

		public override string AlgorithmName
		{
			get { return "ChaCha" + rounds; }
		}

		protected override void AdvanceCounter()
		{
			if (++engineState[12] == 0)
			{
				++engineState[13];
			}
		}

		protected override void ResetCounter()
		{
			engineState[12] = engineState[13] = 0;
		}

		protected override void SetKey(byte[] keyBytes, byte[] ivBytes)
		{
			if ((keyBytes.Length != 16) && (keyBytes.Length != 32))
			{
				throw new ArgumentException(AlgorithmName + " requires 128 bit or 256 bit key");
			}

			int offset = 0;
			byte[] constants;

			// Key
			engineState[4] = Pack.LE_To_UInt32(keyBytes, 0);
			engineState[5] = Pack.LE_To_UInt32(keyBytes, 4);
			engineState[6] = Pack.LE_To_UInt32(keyBytes, 8);
			engineState[7] = Pack.LE_To_UInt32(keyBytes, 12);

			if (keyBytes.Length == 32)
			{
				constants = sigma;
				offset = 16;
			} else
			{
				constants = tau;
			}

			engineState[8] = Pack.LE_To_UInt32(keyBytes, offset);
			engineState[9] = Pack.LE_To_UInt32(keyBytes, offset + 4);
			engineState[10] = Pack.LE_To_UInt32(keyBytes, offset + 8);
			engineState[11] = Pack.LE_To_UInt32(keyBytes, offset + 12);

			engineState[0] = Pack.LE_To_UInt32(constants, 0);
			engineState[1] = Pack.LE_To_UInt32(constants, 4);
			engineState[2] = Pack.LE_To_UInt32(constants, 8);
			engineState[3] = Pack.LE_To_UInt32(constants, 12);

			// Counter
			engineState[12] = engineState[13] = 0;

			// IV
			engineState[14] = Pack.LE_To_UInt32(ivBytes, 0);
			engineState[15] = Pack.LE_To_UInt32(ivBytes, 4);
		}

		protected override void GenerateKeyStream(byte[] output)
		{
			ChachaCore(rounds, engineState, x);
			Pack.UInt32_To_LE(x, output, 0);
		}

		/// <summary>
		/// ChacCha function.
		/// </summary>
		/// <param name="rounds">The number of ChaCha rounds to execute</param>
		/// <param name="input">The input words.</param>
		/// <param name="x">The ChaCha state to modify.</param>
		internal static void ChachaCore(int rounds, uint[] input, uint[] x)
		{
			if (input.Length != 16) {
				throw new ArgumentException();
			}
			if (x.Length != 16) {
				throw new ArgumentException();
			}
			if (rounds % 2 != 0) {
				throw new ArgumentException("Number of rounds must be even");
			}

			uint x00 = input[ 0];
			uint x01 = input[ 1];
			uint x02 = input[ 2];
			uint x03 = input[ 3];
			uint x04 = input[ 4];
			uint x05 = input[ 5];
			uint x06 = input[ 6];
			uint x07 = input[ 7];
			uint x08 = input[ 8];
			uint x09 = input[ 9];
			uint x10 = input[10];
			uint x11 = input[11];
			uint x12 = input[12];
			uint x13 = input[13];
			uint x14 = input[14];
			uint x15 = input[15];

			for (int i = rounds; i > 0; i -= 2)
			{
				x00 += x04; x12 = R(x12 ^ x00, 16);
				x08 += x12; x04 = R(x04 ^ x08, 12);
				x00 += x04; x12 = R(x12 ^ x00, 8);
				x08 += x12; x04 = R(x04 ^ x08, 7);
				x01 += x05; x13 = R(x13 ^ x01, 16);
				x09 += x13; x05 = R(x05 ^ x09, 12);
				x01 += x05; x13 = R(x13 ^ x01, 8);
				x09 += x13; x05 = R(x05 ^ x09, 7);
				x02 += x06; x14 = R(x14 ^ x02, 16);
				x10 += x14; x06 = R(x06 ^ x10, 12);
				x02 += x06; x14 = R(x14 ^ x02, 8);
				x10 += x14; x06 = R(x06 ^ x10, 7);
				x03 += x07; x15 = R(x15 ^ x03, 16);
				x11 += x15; x07 = R(x07 ^ x11, 12);
				x03 += x07; x15 = R(x15 ^ x03, 8);
				x11 += x15; x07 = R(x07 ^ x11, 7);
				x00 += x05; x15 = R(x15 ^ x00, 16);
				x10 += x15; x05 = R(x05 ^ x10, 12);
				x00 += x05; x15 = R(x15 ^ x00, 8);
				x10 += x15; x05 = R(x05 ^ x10, 7);
				x01 += x06; x12 = R(x12 ^ x01, 16);
				x11 += x12; x06 = R(x06 ^ x11, 12);
				x01 += x06; x12 = R(x12 ^ x01, 8);
				x11 += x12; x06 = R(x06 ^ x11, 7);
				x02 += x07; x13 = R(x13 ^ x02, 16);
				x08 += x13; x07 = R(x07 ^ x08, 12);
				x02 += x07; x13 = R(x13 ^ x02, 8);
				x08 += x13; x07 = R(x07 ^ x08, 7);
				x03 += x04; x14 = R(x14 ^ x03, 16);
				x09 += x14; x04 = R(x04 ^ x09, 12);
				x03 += x04; x14 = R(x14 ^ x03, 8);
				x09 += x14; x04 = R(x04 ^ x09, 7);
			}

			x[ 0] = x00 + input[ 0];
			x[ 1] = x01 + input[ 1];
			x[ 2] = x02 + input[ 2];
			x[ 3] = x03 + input[ 3];
			x[ 4] = x04 + input[ 4];
			x[ 5] = x05 + input[ 5];
			x[ 6] = x06 + input[ 6];
			x[ 7] = x07 + input[ 7];
			x[ 8] = x08 + input[ 8];
			x[ 9] = x09 + input[ 9];
			x[10] = x10 + input[10];
			x[11] = x11 + input[11];
			x[12] = x12 + input[12];
			x[13] = x13 + input[13];
			x[14] = x14 + input[14];
			x[15] = x15 + input[15];
		}
	}
}