Skip to content
Open
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
14 changes: 7 additions & 7 deletions spec/Overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ <h2>KeyAlgorithm dictionary</h2>
</p>
<pre class=idl>
dictionary KeyAlgorithm {
required DOMString name;
DOMString name;
};
</pre>
<section id="key-algorithm-dictionary-description" class="informative">
Expand Down Expand Up @@ -3946,8 +3946,8 @@ <h4>RSA key generation parameter validation</h4>
<h4><dfn data-idl id="dfn-RsaKeyAlgorithm">RsaKeyAlgorithm</dfn> dictionary</h4>
<pre class=idl>
dictionary RsaKeyAlgorithm : KeyAlgorithm {
required [EnforceRange] unsigned long modulusLength;
required BigInteger publicExponent;
unsigned long modulusLength;
BigInteger publicExponent;
};
</pre>
<p>The <dfn data-idl data-dfn-for=RsaKeyAlgorithm id="dfn-RsaKeyAlgorithm-modulusLength">modulusLength</dfn> member contains the length, in bits, of the RSA modulus.</p>
Expand Down Expand Up @@ -7125,7 +7125,7 @@ <h4><dfn data-idl id="dfn-EcKeyGenParams">EcKeyGenParams</dfn> dictionary</h4>
<h4><dfn data-idl id="dfn-EcKeyAlgorithm">EcKeyAlgorithm</dfn> dictionary</h4>
<pre class=idl>
dictionary EcKeyAlgorithm : KeyAlgorithm {
required NamedCurve namedCurve;
NamedCurve namedCurve;
};
</pre>
<p>The <dfn data-dfn-for=EcKeyAlgorithm id=dfn-EcKeyAlgorithm-namedCurve>namedCurve</dfn> member represents the named curve that the key uses.</p>
Expand Down Expand Up @@ -12219,7 +12219,7 @@ <h4><dfn data-idl id="dfn-AesCtrParams">AesCtrParams</dfn> dictionary</h4>
<h4><dfn data-idl id="dfn-AesKeyAlgorithm">AesKeyAlgorithm</dfn> dictionary</h4>
<pre class=idl>
dictionary AesKeyAlgorithm : KeyAlgorithm {
required [EnforceRange] unsigned short length;
unsigned short length;
};
</pre>
<p>The <dfn data-dfn-for=AesKeyAlgorithm id="dfn-AesKeyAlgorithm-length">length</dfn> member represents the length, in bits, of the key.</p>
Expand Down Expand Up @@ -14492,8 +14492,8 @@ <h4><dfn data-idl id="dfn-HmacImportParams">HmacImportParams</dfn> dictionary</h
<h4><dfn data-idl id="dfn-HmacKeyAlgorithm">HmacKeyAlgorithm</dfn> dictionary</h4>
<pre class=idl>
dictionary HmacKeyAlgorithm : KeyAlgorithm {
required KeyAlgorithm hash;
required [EnforceRange] unsigned long length;
KeyAlgorithm hash;
unsigned long length;
};
</pre>
<p>The <dfn data-dfn-for=HmacKeyAlgorithm id=dfn-HmacKeyAlgorithm-hash>hash</dfn> member represents the inner hash function to use.</p>
Expand Down
Loading