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

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

The newest version!
package org.whispersystems.curve25519.java;

public class ge_isneutral {
    /**
     * Checks that the point is neutral
     *
     * @param p point
     * @return true if p is the neutral point, false otherwise
     */
    public static boolean ge_isneutral(ge_p3 p) {
        int[] zero = new int[10];
        fe_0.fe_0(zero);

        /* Check if p == neutral element == (0, 1) */
        return (fe_isequal.fe_isequal(p.X, zero) & fe_isequal.fe_isequal(p.Y, p.Z)) == 1;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy