diff --git a/spec/Overview.html b/spec/Overview.html index 0e754ee..5e3d668 100644 --- a/spec/Overview.html +++ b/spec/Overview.html @@ -1289,7 +1289,7 @@

SubtleCrypto interface

Promise<ArrayBuffer> deriveBits( AlgorithmIdentifier algorithm, CryptoKey baseKey, - optional unsigned long? length = null + optional [EnforceRange] unsigned long? length = null ); Promise<CryptoKey> importKey( @@ -3907,7 +3907,7 @@

RsaHashedKeyGenParams dic

RsaKeyAlgorithm dictionary

 dictionary RsaKeyAlgorithm : KeyAlgorithm {
-  required unsigned long modulusLength;
+  required [EnforceRange] unsigned long modulusLength;
   required BigInteger publicExponent;
 };
           
@@ -12105,7 +12105,7 @@

AesCtrParams dictionary

AesKeyAlgorithm dictionary

 dictionary AesKeyAlgorithm : KeyAlgorithm {
-  required unsigned short length;
+  required [EnforceRange] unsigned short length;
 };
           

The length member represents the length, in bits, of the key.

@@ -14379,7 +14379,7 @@

HmacKeyAlgorithm dictionary dictionary HmacKeyAlgorithm : KeyAlgorithm { required KeyAlgorithm hash; - required unsigned long length; + required [EnforceRange] unsigned long length; };

The hash member represents the inner hash function to use.