We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71c9f62 commit fe8e8c3Copy full SHA for fe8e8c3
crypto/src/math/raw/Mod.cs
@@ -486,24 +486,6 @@ private static bool IsZero(int len, int[] x)
486
return true;
487
}
488
489
- //private static void Negate30(int len, int[] D)
490
- //{
491
- // Debug.Assert(len > 0);
492
- // Debug.Assert(D.Length >= len);
493
-
494
- // int last = len - 1;
495
- // long cd = 0L;
496
497
- // for (int i = 0; i < last; ++i)
498
- // {
499
- // cd -= D[i];
500
- // D[i] = (int)cd & M30; cd >>= 30;
501
- // }
502
503
- // cd -= D[last];
504
- // D[last] = (int)cd;
505
- //}
506
507
private static int Negate30(int len30, int[] D)
508
{
509
Debug.Assert(len30 > 0);
0 commit comments