
org.whispersystems.curve25519.java.fe_isequal 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
The newest version!
package org.whispersystems.curve25519.java;
public class fe_isequal {
/*
return 1 if f == g
return 0 if f != g
*/
public static int fe_isequal(int[] f, int[] g) {
int[] h = new int[10];
fe_sub.fe_sub(h, f, g);
return 1 - fe_isnonzero.fe_isnonzero(h);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy