Skip to content

Commit

Permalink
Throw an OperationError in the PBKDF2 and HKDF derive bits operations…
Browse files Browse the repository at this point in the history
… if length is zero (#275)
  • Loading branch information
littledivy authored Sep 2, 2021
1 parent 99dfe05 commit 6438d87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/Overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -14359,7 +14359,7 @@ <h4>Operations</h4>
<ol>
<li>
<p>
If <var>length</var> is null or is not a multiple of 8, then [= exception/throw =] an {{OperationError}}.
If <var>length</var> is null or zero, or is not a multiple of 8, then [= exception/throw =] an {{OperationError}}.
</p>
</li>
<li>
Expand Down Expand Up @@ -14595,7 +14595,7 @@ <h4>Operations</h4>
<ol>
<li>
<p>
If <var>length</var> is null or is not a multiple of 8, then [= exception/throw =] an {{OperationError}}.
If <var>length</var> is null or zero, or is not a multiple of 8, then [= exception/throw =] an {{OperationError}}.
</p>
</li>
<li>
Expand Down

0 comments on commit 6438d87

Please sign in to comment.