blob: 5660a1f841f10923eb784e5618a3231bb9e676c3 (
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 uint[] x;
public void Init(byte[] x)
{
this.x = GcmUtilities.AsUints(x);
}
public void ExponentiateX(long pow, byte[] output)
{
// Initial value is little-endian 1
uint[] y = GcmUtilities.OneAsUints();
if (pow > 0)
{
uint[] powX = Arrays.Clone(x);
do
{
if ((pow & 1L) != 0)
{
GcmUtilities.Multiply(y, powX);
}
GcmUtilities.Multiply(powX, powX);
pow >>= 1;
}
while (pow > 0);
}
GcmUtilities.AsBytes(y, output);
}
}
}
|