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

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

There is a newer version: 0.5.0
Show newest version

package org.whispersystems.curve25519.java;

public class ge_precomp {

    public int[] yplusx;
    public int[] yminusx;
    public int[] xy2d;

    public ge_precomp() {
        yplusx = new int[10];
        yminusx = new int[10];
        xy2d = new int[10];
    }
    
    public ge_precomp(int[] new_yplusx, int[] new_yminusx, 
                      int[] new_xy2d) {
        yplusx = new_yplusx;
        yminusx = new_yminusx;
        xy2d = new_xy2d;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy