Skip to content

Commit fe8e8c3

Browse files
committed
Cleanup
1 parent 71c9f62 commit fe8e8c3

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

crypto/src/math/raw/Mod.cs

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -486,24 +486,6 @@ private static bool IsZero(int len, int[] x)
486486
return true;
487487
}
488488

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-
507489
private static int Negate30(int len30, int[] D)
508490
{
509491
Debug.Assert(len30 > 0);

0 commit comments

Comments
 (0)