Make method static

This commit is contained in:
zzz
2021-07-20 10:47:50 -04:00
parent 3244fe1b0f
commit 369c40322e

View File

@@ -288,7 +288,7 @@ public final class Curve25519 {
* @param x The first number to subtract.
* @param y The second number to subtract.
*/
private void sub(int[] result, int[] x, int[] y)
private static void sub(int[] result, int[] x, int[] y)
{
int index, borrow;