Skip to content
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,7 @@ interface JsonWebKey {
ext?: boolean;
k?: string;
key_ops?: string[];
kid?: string;
kty?: string;
n?: string;
oth?: RsaOtherPrimesInfo[];
Expand Down
1 change: 1 addition & 0 deletions baselines/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ interface JsonWebKey {
ext?: boolean;
k?: string;
key_ops?: string[];
kid?: string;
kty?: string;
n?: string;
oth?: RsaOtherPrimesInfo[];
Expand Down
3 changes: 3 additions & 0 deletions inputfiles/idl/Web Cryptography.widl
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ dictionary JsonWebKey {
DOMString qi;
sequence<RsaOtherPrimesInfo> oth;
DOMString k;

// The following field is defined in Section 4.5 of RFC7517
DOMString kid;
};

typedef Uint8Array BigInteger;
Expand Down