
org.whispersystems.curve25519.java.ge_neg 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_neg {
public static void ge_neg(ge_p3 r, ge_p3 p) {
fe_neg.fe_neg(r.X, p.X);
fe_copy.fe_copy(r.Y, p.Y);
fe_copy.fe_copy(r.Z, p.Z);
fe_neg.fe_neg(r.T, p.T);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy