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

Fix RSA-OAEP and RSA-PSS typos for JWK #391

Merged
merged 1 commit into from
Dec 30, 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: 6 additions & 6 deletions spec/Overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -5502,14 +5502,14 @@ <h4>Operations</h4>
<li>
<p>
Let |privateKey| represent the
RSA public key identified by interpreting |jwk|
according to Section 6.3.1 of JSON Web
RSA private key identified by interpreting |jwk|
according to Section 6.3.2 of JSON Web
Algorithms [[JWA]].
</p>
</li>
<li>
<p>
If |privateKey| can be determined to not be a valid RSA public key
If |privateKey| can be determined to not be a valid RSA private key
according to [[RFC3447]],
then [= exception/throw =] a
{{DataError}}.
Expand Down Expand Up @@ -6529,13 +6529,13 @@ <h4>Operations</h4>
<li>
<p>
Let |privateKey| represent the
RSA public key identified by interpreting |jwk|
according to Section 6.3.1 of JSON Web Algorithms [[JWA]].
RSA private key identified by interpreting |jwk|
according to Section 6.3.2 of JSON Web Algorithms [[JWA]].
</p>
</li>
<li>
<p>
If |privateKey| can be determined to not be a valid RSA public key
If |privateKey| can be determined to not be a valid RSA private key
according to [[RFC3447]],
then [= exception/throw =] a
{{DataError}}.
Expand Down
Loading