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

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

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

public class point_isreduced {
    public static boolean point_isreduced(byte[] p) {
        byte prevp31Value = p[31];
        p[31] &= 0x7F; /* mask off sign bit */
        int[] result = fe_isreduced.fe_isreduced(p);
        p[31] = prevp31Value;
        return result != null;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy