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

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

There is a newer version: 0.5.0
Show newest version
package org.whispersystems.curve25519.java;

public class ge_p3_dbl {

//CONVERT #include "ge.h"

/*
r = 2 * p
*/

public static void ge_p3_dbl(ge_p1p1 r,ge_p3 p)
{
  ge_p2 q = new ge_p2();
  ge_p3_to_p2.ge_p3_to_p2(q,p);
  ge_p2_dbl.ge_p2_dbl(r,q);
}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy