pub fn ecdh( private_key: &[u8; 32], public_key: &[u8; 64], ) -> Result<[u8; 64], Error>
Compute the ECDH with the private_key and public_key.
private_key
public_key
Returns the 64 bytes shared key.