
org.whispersystems.curve25519.java.ge_p3_add Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of curve25519-java Show documentation
Show all versions of curve25519-java Show documentation
Curve25519 library for Java
The newest version!
package org.whispersystems.curve25519.java;
public class ge_p3_add {
public static void ge_p3_add(ge_p3 r, ge_p3 p, ge_p3 q) {
ge_cached p_cached = new ge_cached();
ge_p1p1 r_p1p1 = new ge_p1p1();
ge_p3_to_cached.ge_p3_to_cached(p_cached, p);
ge_add.ge_add(r_p1p1, q, p_cached);
ge_p1p1_to_p3.ge_p1p1_to_p3(r, r_p1p1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy