pub unsafe extern "C" fn EverCrypt_Curve25519_scalarmult(
shared: *mut u8,
my_priv: *mut u8,
their_pub: *mut u8,
)
Expand description
Compute the scalar multiple of a point.
@param shared Pointer to 32 bytes of memory where the resulting point is written to. @param my_priv Pointer to 32 bytes of memory where the secret/private key is read from. @param their_pub Pointer to 32 bytes of memory where the public point is read from.