SecT283Field.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using System.Diagnostics;
  5. using BestHTTP.SecureProtocol.Org.BouncyCastle.Math.Raw;
  6. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Custom.Sec
  7. {
  8. internal class SecT283Field
  9. {
  10. private const ulong M27 = ulong.MaxValue >> 37;
  11. private const ulong M57 = ulong.MaxValue >> 7;
  12. private static readonly ulong[] ROOT_Z = new ulong[]{ 0x0C30C30C30C30808UL, 0x30C30C30C30C30C3UL,
  13. 0x820820820820830CUL, 0x0820820820820820UL, 0x2082082UL };
  14. public static void Add(ulong[] x, ulong[] y, ulong[] z)
  15. {
  16. z[0] = x[0] ^ y[0];
  17. z[1] = x[1] ^ y[1];
  18. z[2] = x[2] ^ y[2];
  19. z[3] = x[3] ^ y[3];
  20. z[4] = x[4] ^ y[4];
  21. }
  22. public static void AddExt(ulong[] xx, ulong[] yy, ulong[] zz)
  23. {
  24. zz[0] = xx[0] ^ yy[0];
  25. zz[1] = xx[1] ^ yy[1];
  26. zz[2] = xx[2] ^ yy[2];
  27. zz[3] = xx[3] ^ yy[3];
  28. zz[4] = xx[4] ^ yy[4];
  29. zz[5] = xx[5] ^ yy[5];
  30. zz[6] = xx[6] ^ yy[6];
  31. zz[7] = xx[7] ^ yy[7];
  32. zz[8] = xx[8] ^ yy[8];
  33. }
  34. public static void AddOne(ulong[] x, ulong[] z)
  35. {
  36. z[0] = x[0] ^ 1UL;
  37. z[1] = x[1];
  38. z[2] = x[2];
  39. z[3] = x[3];
  40. z[4] = x[4];
  41. }
  42. private static void AddTo(ulong[] x, ulong[] z)
  43. {
  44. z[0] ^= x[0];
  45. z[1] ^= x[1];
  46. z[2] ^= x[2];
  47. z[3] ^= x[3];
  48. z[4] ^= x[4];
  49. }
  50. public static ulong[] FromBigInteger(BigInteger x)
  51. {
  52. return Nat.FromBigInteger64(283, x);
  53. }
  54. public static void HalfTrace(ulong[] x, ulong[] z)
  55. {
  56. ulong[] tt = Nat.Create64(9);
  57. Nat320.Copy64(x, z);
  58. for (int i = 1; i < 283; i += 2)
  59. {
  60. ImplSquare(z, tt);
  61. Reduce(tt, z);
  62. ImplSquare(z, tt);
  63. Reduce(tt, z);
  64. AddTo(x, z);
  65. }
  66. }
  67. public static void Invert(ulong[] x, ulong[] z)
  68. {
  69. if (Nat320.IsZero64(x))
  70. throw new InvalidOperationException();
  71. // Itoh-Tsujii inversion
  72. ulong[] t0 = Nat320.Create64();
  73. ulong[] t1 = Nat320.Create64();
  74. Square(x, t0);
  75. Multiply(t0, x, t0);
  76. SquareN(t0, 2, t1);
  77. Multiply(t1, t0, t1);
  78. SquareN(t1, 4, t0);
  79. Multiply(t0, t1, t0);
  80. SquareN(t0, 8, t1);
  81. Multiply(t1, t0, t1);
  82. Square(t1, t1);
  83. Multiply(t1, x, t1);
  84. SquareN(t1, 17, t0);
  85. Multiply(t0, t1, t0);
  86. Square(t0, t0);
  87. Multiply(t0, x, t0);
  88. SquareN(t0, 35, t1);
  89. Multiply(t1, t0, t1);
  90. SquareN(t1, 70, t0);
  91. Multiply(t0, t1, t0);
  92. Square(t0, t0);
  93. Multiply(t0, x, t0);
  94. SquareN(t0, 141, t1);
  95. Multiply(t1, t0, t1);
  96. Square(t1, z);
  97. }
  98. public static void Multiply(ulong[] x, ulong[] y, ulong[] z)
  99. {
  100. ulong[] tt = Nat320.CreateExt64();
  101. ImplMultiply(x, y, tt);
  102. Reduce(tt, z);
  103. }
  104. public static void MultiplyAddToExt(ulong[] x, ulong[] y, ulong[] zz)
  105. {
  106. ulong[] tt = Nat320.CreateExt64();
  107. ImplMultiply(x, y, tt);
  108. AddExt(zz, tt, zz);
  109. }
  110. public static void Reduce(ulong[] xx, ulong[] z)
  111. {
  112. ulong x0 = xx[0], x1 = xx[1], x2 = xx[2], x3 = xx[3], x4 = xx[4];
  113. ulong x5 = xx[5], x6 = xx[6], x7 = xx[7], x8 = xx[8];
  114. x3 ^= (x8 << 37) ^ (x8 << 42) ^ (x8 << 44) ^ (x8 << 49);
  115. x4 ^= (x8 >> 27) ^ (x8 >> 22) ^ (x8 >> 20) ^ (x8 >> 15);
  116. x2 ^= (x7 << 37) ^ (x7 << 42) ^ (x7 << 44) ^ (x7 << 49);
  117. x3 ^= (x7 >> 27) ^ (x7 >> 22) ^ (x7 >> 20) ^ (x7 >> 15);
  118. x1 ^= (x6 << 37) ^ (x6 << 42) ^ (x6 << 44) ^ (x6 << 49);
  119. x2 ^= (x6 >> 27) ^ (x6 >> 22) ^ (x6 >> 20) ^ (x6 >> 15);
  120. x0 ^= (x5 << 37) ^ (x5 << 42) ^ (x5 << 44) ^ (x5 << 49);
  121. x1 ^= (x5 >> 27) ^ (x5 >> 22) ^ (x5 >> 20) ^ (x5 >> 15);
  122. ulong t = x4 >> 27;
  123. z[0] = x0 ^ t ^ (t << 5) ^ (t << 7) ^ (t << 12);
  124. z[1] = x1;
  125. z[2] = x2;
  126. z[3] = x3;
  127. z[4] = x4 & M27;
  128. }
  129. public static void Reduce37(ulong[] z, int zOff)
  130. {
  131. ulong z4 = z[zOff + 4], t = z4 >> 27;
  132. z[zOff ] ^= t ^ (t << 5) ^ (t << 7) ^ (t << 12);
  133. z[zOff + 4] = z4 & M27;
  134. }
  135. public static void Sqrt(ulong[] x, ulong[] z)
  136. {
  137. ulong[] odd = Nat320.Create64();
  138. ulong u0, u1;
  139. u0 = Interleave.Unshuffle(x[0]); u1 = Interleave.Unshuffle(x[1]);
  140. ulong e0 = (u0 & 0x00000000FFFFFFFFUL) | (u1 << 32);
  141. odd[0] = (u0 >> 32) | (u1 & 0xFFFFFFFF00000000UL);
  142. u0 = Interleave.Unshuffle(x[2]); u1 = Interleave.Unshuffle(x[3]);
  143. ulong e1 = (u0 & 0x00000000FFFFFFFFUL) | (u1 << 32);
  144. odd[1] = (u0 >> 32) | (u1 & 0xFFFFFFFF00000000UL);
  145. u0 = Interleave.Unshuffle(x[4]);
  146. ulong e2 = (u0 & 0x00000000FFFFFFFFUL);
  147. odd[2] = (u0 >> 32);
  148. Multiply(odd, ROOT_Z, z);
  149. z[0] ^= e0;
  150. z[1] ^= e1;
  151. z[2] ^= e2;
  152. }
  153. public static void Square(ulong[] x, ulong[] z)
  154. {
  155. ulong[] tt = Nat.Create64(9);
  156. ImplSquare(x, tt);
  157. Reduce(tt, z);
  158. }
  159. public static void SquareAddToExt(ulong[] x, ulong[] zz)
  160. {
  161. ulong[] tt = Nat.Create64(9);
  162. ImplSquare(x, tt);
  163. AddExt(zz, tt, zz);
  164. }
  165. public static void SquareN(ulong[] x, int n, ulong[] z)
  166. {
  167. Debug.Assert(n > 0);
  168. ulong[] tt = Nat.Create64(9);
  169. ImplSquare(x, tt);
  170. Reduce(tt, z);
  171. while (--n > 0)
  172. {
  173. ImplSquare(z, tt);
  174. Reduce(tt, z);
  175. }
  176. }
  177. public static uint Trace(ulong[] x)
  178. {
  179. // Non-zero-trace bits: 0, 271
  180. return (uint)(x[0] ^ (x[4] >> 15)) & 1U;
  181. }
  182. protected static void ImplCompactExt(ulong[] zz)
  183. {
  184. ulong z0 = zz[0], z1 = zz[1], z2 = zz[2], z3 = zz[3], z4 = zz[4];
  185. ulong z5 = zz[5], z6 = zz[6], z7 = zz[7], z8 = zz[8], z9 = zz[9];
  186. zz[0] = z0 ^ (z1 << 57);
  187. zz[1] = (z1 >> 7) ^ (z2 << 50);
  188. zz[2] = (z2 >> 14) ^ (z3 << 43);
  189. zz[3] = (z3 >> 21) ^ (z4 << 36);
  190. zz[4] = (z4 >> 28) ^ (z5 << 29);
  191. zz[5] = (z5 >> 35) ^ (z6 << 22);
  192. zz[6] = (z6 >> 42) ^ (z7 << 15);
  193. zz[7] = (z7 >> 49) ^ (z8 << 8);
  194. zz[8] = (z8 >> 56) ^ (z9 << 1);
  195. zz[9] = (z9 >> 63); // Zero!
  196. }
  197. protected static void ImplExpand(ulong[] x, ulong[] z)
  198. {
  199. ulong x0 = x[0], x1 = x[1], x2 = x[2], x3 = x[3], x4 = x[4];
  200. z[0] = x0 & M57;
  201. z[1] = ((x0 >> 57) ^ (x1 << 7)) & M57;
  202. z[2] = ((x1 >> 50) ^ (x2 << 14)) & M57;
  203. z[3] = ((x2 >> 43) ^ (x3 << 21)) & M57;
  204. z[4] = ((x3 >> 36) ^ (x4 << 28));
  205. }
  206. //protected static void AddMs(ulong[] zz, int zOff, ulong[] p, params int[] ms)
  207. //{
  208. // ulong t0 = 0, t1 = 0;
  209. // foreach (int m in ms)
  210. // {
  211. // int i = (m - 1) << 1;
  212. // t0 ^= p[i ];
  213. // t1 ^= p[i + 1];
  214. // }
  215. // zz[zOff ] ^= t0;
  216. // zz[zOff + 1] ^= t1;
  217. //}
  218. protected static void ImplMultiply(ulong[] x, ulong[] y, ulong[] zz)
  219. {
  220. /*
  221. * Formula (17) from "Some New Results on Binary Polynomial Multiplication",
  222. * Murat Cenk and M. Anwar Hasan.
  223. *
  224. * The formula as given contained an error in the term t25, as noted below
  225. */
  226. ulong[] a = new ulong[5], b = new ulong[5];
  227. ImplExpand(x, a);
  228. ImplExpand(y, b);
  229. ulong[] u = zz;
  230. ulong[] p = new ulong[26];
  231. ImplMulw(u, a[0], b[0], p, 0); // m1
  232. ImplMulw(u, a[1], b[1], p, 2); // m2
  233. ImplMulw(u, a[2], b[2], p, 4); // m3
  234. ImplMulw(u, a[3], b[3], p, 6); // m4
  235. ImplMulw(u, a[4], b[4], p, 8); // m5
  236. ulong u0 = a[0] ^ a[1], v0 = b[0] ^ b[1];
  237. ulong u1 = a[0] ^ a[2], v1 = b[0] ^ b[2];
  238. ulong u2 = a[2] ^ a[4], v2 = b[2] ^ b[4];
  239. ulong u3 = a[3] ^ a[4], v3 = b[3] ^ b[4];
  240. ImplMulw(u, u1 ^ a[3], v1 ^ b[3], p, 18); // m10
  241. ImplMulw(u, u2 ^ a[1], v2 ^ b[1], p, 20); // m11
  242. ulong A4 = u0 ^ u3 , B4 = v0 ^ v3;
  243. ulong A5 = A4 ^ a[2], B5 = B4 ^ b[2];
  244. ImplMulw(u, A4, B4, p, 22); // m12
  245. ImplMulw(u, A5, B5, p, 24); // m13
  246. ImplMulw(u, u0, v0, p, 10); // m6
  247. ImplMulw(u, u1, v1, p, 12); // m7
  248. ImplMulw(u, u2, v2, p, 14); // m8
  249. ImplMulw(u, u3, v3, p, 16); // m9
  250. // Original method, corresponding to formula (16)
  251. //AddMs(zz, 0, p, 1);
  252. //AddMs(zz, 1, p, 1, 2, 6);
  253. //AddMs(zz, 2, p, 1, 2, 3, 7);
  254. //AddMs(zz, 3, p, 1, 3, 4, 5, 8, 10, 12, 13);
  255. //AddMs(zz, 4, p, 1, 2, 4, 5, 6, 9, 10, 11, 13);
  256. //AddMs(zz, 5, p, 1, 2, 3, 5, 7, 11, 12, 13);
  257. //AddMs(zz, 6, p, 3, 4, 5, 8);
  258. //AddMs(zz, 7, p, 4, 5, 9);
  259. //AddMs(zz, 8, p, 5);
  260. // Improved method factors out common single-word terms
  261. // NOTE: p1,...,p26 in the paper maps to p[0],...,p[25] here
  262. zz[0] = p[ 0];
  263. zz[9] = p[ 9];
  264. ulong t1 = p[ 0] ^ p[ 1];
  265. ulong t2 = t1 ^ p[ 2];
  266. ulong t3 = t2 ^ p[10];
  267. zz[1] = t3;
  268. ulong t4 = p[ 3] ^ p[ 4];
  269. ulong t5 = p[11] ^ p[12];
  270. ulong t6 = t4 ^ t5;
  271. ulong t7 = t2 ^ t6;
  272. zz[2] = t7;
  273. ulong t8 = t1 ^ t4;
  274. ulong t9 = p[ 5] ^ p[ 6];
  275. ulong t10 = t8 ^ t9;
  276. ulong t11 = t10 ^ p[ 8];
  277. ulong t12 = p[13] ^ p[14];
  278. ulong t13 = t11 ^ t12;
  279. ulong t14 = p[18] ^ p[22];
  280. ulong t15 = t14 ^ p[24];
  281. ulong t16 = t13 ^ t15;
  282. zz[3] = t16;
  283. ulong t17 = p[ 7] ^ p[ 8];
  284. ulong t18 = t17 ^ p[ 9];
  285. ulong t19 = t18 ^ p[17];
  286. zz[8] = t19;
  287. ulong t20 = t18 ^ t9;
  288. ulong t21 = p[15] ^ p[16];
  289. ulong t22 = t20 ^ t21;
  290. zz[7] = t22;
  291. ulong t23 = t22 ^ t3;
  292. ulong t24 = p[19] ^ p[20];
  293. // ulong t25 = p[23] ^ p[24];
  294. ulong t25 = p[25] ^ p[24]; // Fixes an error in the paper: p[23] -> p{25]
  295. ulong t26 = p[18] ^ p[23];
  296. ulong t27 = t24 ^ t25;
  297. ulong t28 = t27 ^ t26;
  298. ulong t29 = t28 ^ t23;
  299. zz[4] = t29;
  300. ulong t30 = t7 ^ t19;
  301. ulong t31 = t27 ^ t30;
  302. ulong t32 = p[21] ^ p[22];
  303. ulong t33 = t31 ^ t32;
  304. zz[5] = t33;
  305. ulong t34 = t11 ^ p[0];
  306. ulong t35 = t34 ^ p[9];
  307. ulong t36 = t35 ^ t12;
  308. ulong t37 = t36 ^ p[21];
  309. ulong t38 = t37 ^ p[23];
  310. ulong t39 = t38 ^ p[25];
  311. zz[6] = t39;
  312. ImplCompactExt(zz);
  313. }
  314. protected static void ImplMulw(ulong[] u, ulong x, ulong y, ulong[] z, int zOff)
  315. {
  316. Debug.Assert(x >> 57 == 0);
  317. Debug.Assert(y >> 57 == 0);
  318. //u[0] = 0;
  319. u[1] = y;
  320. u[2] = u[1] << 1;
  321. u[3] = u[2] ^ y;
  322. u[4] = u[2] << 1;
  323. u[5] = u[4] ^ y;
  324. u[6] = u[3] << 1;
  325. u[7] = u[6] ^ y;
  326. uint j = (uint)x;
  327. ulong g, h = 0, l = u[j & 7];
  328. int k = 48;
  329. do
  330. {
  331. j = (uint)(x >> k);
  332. g = u[j & 7]
  333. ^ u[(j >> 3) & 7] << 3
  334. ^ u[(j >> 6) & 7] << 6;
  335. l ^= (g << k);
  336. h ^= (g >> -k);
  337. }
  338. while ((k -= 9) > 0);
  339. h ^= ((x & 0x0100804020100800L) & (ulong)(((long)y << 7) >> 63)) >> 8;
  340. Debug.Assert(h >> 49 == 0);
  341. z[zOff ] = l & M57;
  342. z[zOff + 1] = (l >> 57) ^ (h << 7);
  343. }
  344. protected static void ImplSquare(ulong[] x, ulong[] zz)
  345. {
  346. Interleave.Expand64To128(x, 0, 4, zz, 0);
  347. zz[8] = Interleave.Expand32to64((uint)x[4]);
  348. }
  349. }
  350. }
  351. #pragma warning restore
  352. #endif