pub unsafe extern "C" fn Hacl_Curve25519_64_scalarmult(
    out: *mut u8,
    priv_: *mut u8,
    pub_: *mut u8
)
Expand description

Compute the scalar multiple of a point.

@param out Pointer to 32 bytes of memory, allocated by the caller, where the resulting point is written to. @param priv Pointer to 32 bytes of memory where the secret/private key is read from. @param pub Pointer to 32 bytes of memory where the public point is read from.