123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using System.Diagnostics;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Utilities;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Math.Raw
- {
- internal abstract class Nat448
- {
- public static void Copy64(ulong[] x, ulong[] z)
- {
- z[0] = x[0];
- z[1] = x[1];
- z[2] = x[2];
- z[3] = x[3];
- z[4] = x[4];
- z[5] = x[5];
- z[6] = x[6];
- }
- public static void Copy64(ulong[] x, int xOff, ulong[] z, int zOff)
- {
- z[zOff + 0] = x[xOff + 0];
- z[zOff + 1] = x[xOff + 1];
- z[zOff + 2] = x[xOff + 2];
- z[zOff + 3] = x[xOff + 3];
- z[zOff + 4] = x[xOff + 4];
- z[zOff + 5] = x[xOff + 5];
- z[zOff + 6] = x[xOff + 6];
- }
- public static ulong[] Create64()
- {
- return new ulong[7];
- }
- public static ulong[] CreateExt64()
- {
- return new ulong[14];
- }
- public static bool Eq64(ulong[] x, ulong[] y)
- {
- for (int i = 6; i >= 0; --i)
- {
- if (x[i] != y[i])
- {
- return false;
- }
- }
- return true;
- }
- public static bool IsOne64(ulong[] x)
- {
- if (x[0] != 1UL)
- {
- return false;
- }
- for (int i = 1; i < 7; ++i)
- {
- if (x[i] != 0UL)
- {
- return false;
- }
- }
- return true;
- }
- public static bool IsZero64(ulong[] x)
- {
- for (int i = 0; i < 7; ++i)
- {
- if (x[i] != 0UL)
- {
- return false;
- }
- }
- return true;
- }
- public static void Mul(uint[] x, uint[] y, uint[] zz)
- {
- Nat224.Mul(x, y, zz);
- Nat224.Mul(x, 7, y, 7, zz, 14);
- uint c21 = Nat224.AddToEachOther(zz, 7, zz, 14);
- uint c14 = c21 + Nat224.AddTo(zz, 0, zz, 7, 0);
- c21 += Nat224.AddTo(zz, 21, zz, 14, c14);
- uint[] dx = Nat224.Create(), dy = Nat224.Create();
- bool neg = Nat224.Diff(x, 7, x, 0, dx, 0) != Nat224.Diff(y, 7, y, 0, dy, 0);
- uint[] tt = Nat224.CreateExt();
- Nat224.Mul(dx, dy, tt);
- c21 += neg ? Nat.AddTo(14, tt, 0, zz, 7) : (uint)Nat.SubFrom(14, tt, 0, zz, 7);
- Nat.AddWordAt(28, c21, zz, 21);
- }
- public static void Square(uint[] x, uint[] zz)
- {
- Nat224.Square(x, zz);
- Nat224.Square(x, 7, zz, 14);
- uint c21 = Nat224.AddToEachOther(zz, 7, zz, 14);
- uint c14 = c21 + Nat224.AddTo(zz, 0, zz, 7, 0);
- c21 += Nat224.AddTo(zz, 21, zz, 14, c14);
- uint[] dx = Nat224.Create();
- Nat224.Diff(x, 7, x, 0, dx, 0);
- uint[] tt = Nat224.CreateExt();
- Nat224.Square(dx, tt);
- c21 += (uint)Nat.SubFrom(14, tt, 0, zz, 7);
- Nat.AddWordAt(28, c21, zz, 21);
- }
- public static BigInteger ToBigInteger64(ulong[] x)
- {
- byte[] bs = new byte[56];
- for (int i = 0; i < 7; ++i)
- {
- ulong x_i = x[i];
- if (x_i != 0L)
- {
- Pack.UInt64_To_BE(x_i, bs, (6 - i) << 3);
- }
- }
- return new BigInteger(1, bs);
- }
- }
- }
- #pragma warning restore
- #endif
|