summary refs log tree commit diff
path: root/crypto/src/crypto/modes/gcm/BasicGcmExponentiator.cs
blob: 98049e1db51200089ddbc26edf509ce8f535642c (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
using System;

using Org.BouncyCastle.Utilities;

namespace Org.BouncyCastle.Crypto.Modes.Gcm
{
	public class BasicGcmExponentiator
		: IGcmExponentiator
	{
		private byte[] x;

		public void Init(byte[] x)
		{
			this.x = Arrays.Clone(x);
		}

		public void ExponentiateX(long pow, byte[] output)
		{
			// Initial value is little-endian 1
			byte[] y = GcmUtilities.OneAsBytes();

			if (pow > 0)
			{
				byte[] powX = Arrays.Clone(x);
				do
				{
					if ((pow & 1L) != 0)
					{
						GcmUtilities.Multiply(y, powX);
					}
					GcmUtilities.Multiply(powX, powX);
					pow >>= 1;
				}
				while (pow > 0);
			}

			Array.Copy(y, 0, output, 0, 16);
		}
	}
}