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
8 changes: 4 additions & 4 deletions spec/Overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -1289,7 +1289,7 @@ <h2>SubtleCrypto interface</h2>
Promise&lt;ArrayBuffer> deriveBits(
AlgorithmIdentifier algorithm,
CryptoKey baseKey,
optional unsigned long? length = null
optional [EnforceRange] unsigned long? length = null
);

Promise&lt;CryptoKey> importKey(
Expand Down Expand Up @@ -3907,7 +3907,7 @@ <h4><dfn data-idl id="dfn-RsaHashedKeyGenParams">RsaHashedKeyGenParams</dfn> dic
<h4><dfn data-idl id="dfn-RsaKeyAlgorithm">RsaKeyAlgorithm</dfn> dictionary</h4>
<pre class=idl>
dictionary RsaKeyAlgorithm : KeyAlgorithm {
required unsigned long modulusLength;
required [EnforceRange] unsigned long modulusLength;
required BigInteger publicExponent;
};
</pre>
Expand Down Expand Up @@ -12105,7 +12105,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 unsigned short length;
required [EnforceRange] 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 @@ -14379,7 +14379,7 @@ <h4><dfn data-idl id="dfn-HmacKeyAlgorithm">HmacKeyAlgorithm</dfn> dictionary</h
<pre class=idl>
dictionary HmacKeyAlgorithm : KeyAlgorithm {
required KeyAlgorithm hash;
required unsigned long length;
required [EnforceRange] 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