pub unsafe extern "C" fn Hacl_Curve25519_64_ecdh(
    out: *mut u8,
    priv_: *mut u8,
    pub_: *mut u8
) -> bool
Expand description

Execute the diffie-hellmann key exchange.

@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 our secret/private key is read from. @param pub Pointer to 32 bytes of memory where their public point is read from.