org.whispersystems.curve25519.java.ge_cached Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of curve25519-java Show documentation
Show all versions of curve25519-java Show documentation
Curve25519 library for Java
package org.whispersystems.curve25519.java;
public class ge_cached {
public int[] YplusX;
public int[] YminusX;
public int[] Z;
public int[] T2d;
public ge_cached() {
YplusX = new int[10];
YminusX = new int[10];
Z = new int[10];
T2d = new int[10];
}
}