Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a note regarding HRT precision #57

Merged
merged 3 commits into from
Feb 28, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ <h3>The <dfn>DOMHighResTimeStamp</dfn> Type</h3>
typedef double DOMHighResTimeStamp;
</pre>
<p>A <a>DOMHighResTimeStamp</a> SHOULD represent a time in milliseconds
accurate to 5 microseconds - see <a href="#sec-privacy-security"></a>.</p>
accurate to some microseconds - see <a href="#clock-resolution"></a> for additional considerations.</p>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'accurate enough to allow measurement and inaccurate enough to prevent attack'

<p class='note'>If the User Agent is unable to provide a time value
accurate to 5 microseconds due to hardware or software constraints, the
User Agent can represent a <a>DOMHighResTimeStamp</a> as a time in
Expand Down Expand Up @@ -350,8 +350,11 @@ <h3>Clock resolution</h3>
this new API an attacker may be able to obtain high-resolution estimates
through repeat execution and statistical analysis. To ensure that the new
API does not significantly improve the accuracy or speed of such attacks,
the recommended minimum resolution of the <a>Performance</a> interface
the recommended minimum resolution of the <a>DOMHighResTimeStamp</a> type
should be set to 5 microseconds.</p>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please change from 'should be set to 5 microseconds' to 'should be inaccurate enough to prevent attack'.

<div class="issue" data-number="56">
The recommended minimum resolution of the <a>DOMHighResTimeStamp</a> is likely to increase in the upcoming future.
</div>
<p>Mitigating such timing side-channel attacks entirely is practically
not possible: either all operations would have to execute in a time that
does not vary based on the value of any confidential information, or, the
Expand Down