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

Document open issue around small-order checks in EdDSA #31

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Changes from all commits
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
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1872,13 +1872,19 @@ <h4>Operations</h4>
If the key data of |key| represents an invalid point or a small-order element
on the Elliptic Curve of Ed25519, return `false`.
</p>
<p class="issue" data-number="27">
Not all implementations perform this check.
</p>
</li>
<li>
<p>
If the point R, encoded in the first half of |signature|,
represents an invalid point or a small-order element
on the Elliptic Curve of Ed25519, return `false`.
</p>
<p class="issue" data-number="27">
Not all implementations perform this check.
</p>
</li>
<li>
<p>
Expand Down Expand Up @@ -2765,13 +2771,19 @@ <h4>Operations</h4>
If the key data of |key| represents an invalid point or a small-order element
on the Elliptic Curve of Ed448, return `false`.
</p>
<p class="issue" data-number="27">
Not all implementations perform this check.
</p>
</li>
<li>
<p>
If the point R, encoded in the first half of |signature|,
represents an invalid point or a small-order element
on the Elliptic Curve of Ed448, return `false`.
</p>
<p class="issue" data-number="27">
Not all implementations perform this check.
</p>
</li>
<li>
<p>
Expand Down
Loading