Skip to content

Commit 6fac7a5

Browse files
authored
Align hash property format for HS512 mapping (#418)
In the JWK Algorithm Mappings table, the 'hash' property for the HS512 algorithm is formatted as a string ("SHA-512"). This commit changes the format to be an object ({ name: 'SHA-512' }), making it consistent with the format used by all other HMAC algorithms (HS1, HS256, HS384) in the table.
1 parent 79841c3 commit 6fac7a5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spec/Overview.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16310,7 +16310,8 @@ <h3>Algorithm mappings</h3>
1631016310
<td>
1631116311
<pre class=js>
1631216312
{ name: "HMAC",
16313-
hash: "SHA-512" }
16313+
hash: { name: "SHA-512" }
16314+
}
1631416315
</pre>
1631516316
</td>
1631616317
</tr>

0 commit comments

Comments
 (0)