All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.whispersystems.curve25519.java.fe_isequal Maven / Gradle / Ivy

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