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

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

package org.whispersystems.curve25519.java;

public class point_isreduced {
    public static boolean point_isreduced(byte[] p)
    {
        byte[] strict = new byte[32];

        System.arraycopy(p, 0, strict, 0, 32);
        strict[31] &= 0x7F; /* mask off sign bit */
        return fe_isreduced.fe_isreduced(strict);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy