ericcornelissen / NervousFish

An app for your :iphone: to exchange public-keys in a secure manner.
GNU Lesser General Public License v3.0
2 stars 4 forks source link

Send tap data from slave to master #118

Closed jverbraeken closed 7 years ago

jverbraeken commented 7 years ago

User story

As a developer I want to inform the master when, where and how late a touch event occurred each time the slave taps the screen.

What

This issue demands to communicate the tap data from the slave to the master.

Why

This issue is needed for the project because the master must be able to verify whether or not the slave tapped at the correct way to verify that the user is the correct user.

How

This feature can be added by wrapping the relevant tap data in a POJO and wrapping that POJO in an object that contains, aside from the POJO, also an identifier that makes clear what the type of the POJO is. That object is serialized and then sent over Bluetooth to the master. The master deserializes the object, extracts the POJO, and looks up the data in the POJO.

Definition of done

This task can be considered done when

Notes