diff --git a/ed/algorithms/WebCryptoAPI.json b/ed/algorithms/WebCryptoAPI.json index bb70e6a3b53f..d5d32282ae99 100644 --- a/ed/algorithms/WebCryptoAPI.json +++ b/ed/algorithms/WebCryptoAPI.json @@ -95,10 +95,19 @@ "html": "

\n If array is not an Int8Array, Uint8Array, Uint8ClampedArray,\n Int16Array, Uint16Array, Int32Array, Uint32Array,\n BigInt64Array, or BigUint64Array, then throw a\n TypeMismatchError and\n terminate the algorithm.\n

" }, { - "html": "

\n If the byteLength of array is greater than 65536, throw a\n QuotaExceededError and\n terminate the algorithm.\n

" + "html": "

\n Let byteLength be the byte length of array.\n

" }, { - "html": "

\n Overwrite all elements of array with cryptographically strong random values of\n the appropriate type.\n

" + "html": "

\n If byteLength is greater than 65536, throw a\n QuotaExceededError and\n terminate the algorithm.\n

" + }, + { + "html": "

\n Let bytes be a byte sequence of length byteLength.\n

" + }, + { + "html": "

\n Fill bytes with cryptographically secure random bytes.\n

" + }, + { + "html": "

\n Write bytes into array.\n

" }, { "html": "

\n Return array.\n

" @@ -183,7 +192,7 @@ "html": "

\n Let algorithm and key be the\n algorithm and key parameters\n passed to the encrypt() method,\n respectively.\n

" }, { - "html": "

\n Let data be the result of\n getting a copy of the bytes held by the data parameter passed to the\n encrypt() method.\n

" + "html": "

\n Let data be the result of\n getting a copy of the bytes held by the data parameter passed to the\n encrypt() method.\n

" }, { "html": "

\n Let normalizedAlgorithm be the result of\n normalizing an algorithm, with\n alg set to algorithm and op set to\n \"encrypt\".\n

" @@ -230,7 +239,7 @@ "rationale": "let", "steps": [ { - "html": "

\n Let algorithm and key be the\n algorithm and keyparameters\n passed to the decrypt() method,\n respectively.\n

" + "html": "

\n Let algorithm and key be the\n algorithm and key parameters\n passed to the decrypt() method,\n respectively.\n

" }, { "html": "

\n Let data be the result of\n getting a copy of the bytes held by the data parameter passed to the\n decrypt() method.\n

" @@ -1113,7 +1122,7 @@ "html": "

\n If the [[type]] internal slot of\n key is not \"private\", then throw an InvalidAccessError.\n

" }, { - "html": "

\n Perform the signature generation operation defined in Section 8.2 of [RFC3447] with the key represented by the [[handle]] internal slot of key\n as the signer's private key and the contents of message as\n M and using the hash function specified in the hash attribute of the [[algorithm]] internal slot of\n key as the Hash option for the EMSA-PKCS1-v1_5 encoding method.\n

" + "html": "

\n Perform the signature generation operation defined in Section 8.2 of [RFC3447] with the key represented by the [[handle]] internal slot of key\n as the signer's private key and message as\n M and using the hash function specified in the hash attribute of the [[algorithm]] internal slot of\n key as the Hash option for the EMSA-PKCS1-v1_5 encoding method.\n

" }, { "html": "

\n If performing the operation results in an error,\n then throw an\n OperationError.\n

" @@ -1134,7 +1143,7 @@ "html": "

\n If the [[type]] internal slot of\n key is not \"public\", then throw an InvalidAccessError.\n

" }, { - "html": "

\n Perform the signature verification operation defined in Section 8.2 of\n [RFC3447] with the key represented by the\n [[handle]] internal slot of\n key as the signer's RSA public key and the contents of message as\n M and the contents of\n signature as S and using the hash function specified\n in the hash attribute of the\n [[algorithm]] internal slot of\n key as the Hash option for the EMSA-PKCS1-v1_5 encoding method.\n

" + "html": "

\n Perform the signature verification operation defined in Section 8.2 of\n [RFC3447] with the key represented by the\n [[handle]] internal slot of\n key as the signer's RSA public key and message as\n M and\n signature as S and using the hash function specified\n in the hash attribute of the\n [[algorithm]] internal slot of\n key as the Hash option for the EMSA-PKCS1-v1_5 encoding method.\n

" }, { "html": "

\n Let result be a boolean with value true if the\n result of the operation was \"valid signature\" and the value\n false otherwise.\n

" @@ -1643,7 +1652,7 @@ "html": "

\n If the [[type]] internal slot of\n key is not \"private\", then throw an InvalidAccessError.\n

" }, { - "html": "

\n Perform the signature generation operation defined in Section 8.1 of [RFC3447] with the key represented by the [[handle]] internal slot of key\n as the signer's private key, K, and the contents of message as\n the message to be signed, M, and using the hash function specified\n by the hash attribute of the\n [[algorithm]] internal slot of\n key as the Hash option, MGF1 (defined in Section B.2.1 of [RFC3447]) as the MGF option and the saltLength member of\n normalizedAlgorithm as the salt length option for the\n EMSA-PSS-ENCODE operation.\n

" + "html": "

\n Perform the signature generation operation defined in Section 8.1 of [RFC3447] with the key represented by the [[handle]] internal slot of key\n as the signer's private key, K, and message as\n the message to be signed, M, and using the hash function specified\n by the hash attribute of the\n [[algorithm]] internal slot of\n key as the Hash option, MGF1 (defined in Section B.2.1 of [RFC3447]) as the MGF option and the saltLength member of\n normalizedAlgorithm as the salt length option for the\n EMSA-PSS-ENCODE operation.\n

" }, { "html": "

\n If performing the operation results in an error,\n then throw an\n OperationError.\n

" @@ -1664,7 +1673,7 @@ "html": "

\n If the [[type]] internal slot of\n key is not \"public\", then throw an InvalidAccessError.\n

" }, { - "html": "

\n Perform the signature verification operation defined in Section 8.1 of\n [RFC3447] with the key represented by the\n [[handle]] internal slot of\n key as the signer's RSA public key and the contents of message as\n M and the contents of\n signature as S and using the hash function specified\n by the hash attribute of the\n [[algorithm]] internal slot of\n key as the Hash option, MGF1 (defined in Section B.2.1 of [RFC3447]) as the MGF option and the saltLength member of\n normalizedAlgorithm as the salt length option for the\n EMSA-PSS-VERIFY operation.\n

" + "html": "

\n Perform the signature verification operation defined in Section 8.1 of\n [RFC3447] with the key represented by the\n [[handle]] internal slot of\n key as the signer's RSA public key and message as\n M and\n signature as S and using the hash function specified\n by the hash attribute of the\n [[algorithm]] internal slot of\n key as the Hash option, MGF1 (defined in Section B.2.1 of [RFC3447]) as the MGF option and the saltLength member of\n normalizedAlgorithm as the salt length option for the\n EMSA-PSS-VERIFY operation.\n

" }, { "html": "

\n Let result be a boolean with the value true if the\n result of the operation was \"valid signature\" and the value\n false otherwise.\n

" @@ -2164,10 +2173,10 @@ "html": "

\n If the [[type]] internal slot of key\n is not \"public\",\n then throw an\n InvalidAccessError.\n

" }, { - "html": "

\n Let label be the contents of the label member of\n normalizedAlgorithm or the empty octet string if the\n label member of\n normalizedAlgorithm is not present.\n

" + "html": "

\n Let label be the label member of\n normalizedAlgorithm or the empty byte sequence if the\n label member of\n normalizedAlgorithm is not present.\n

" }, { - "html": "

\n Perform the encryption operation defined in Section 7.1 of [RFC3447] with the key represented by key\n as the recipient's RSA public key, the contents of plaintext\n as the message to be encrypted, M and label\n as the label, L, and with the hash\n function specified by the hash\n attribute of the [[algorithm]] internal slot of\n key as the Hash option and MGF1 (defined in Section B.2.1 of\n [RFC3447]) as the MGF option.\n

" + "html": "

\n Perform the encryption operation defined in Section 7.1 of [RFC3447] with the key represented by key\n as the recipient's RSA public key, plaintext\n as the message to be encrypted, M and label\n as the label, L, and with the hash\n function specified by the hash\n attribute of the [[algorithm]] internal slot of\n key as the Hash option and MGF1 (defined in Section B.2.1 of\n [RFC3447]) as the MGF option.\n

" }, { "html": "

\n If performing the operation results in an error,\n then throw an\n OperationError.\n

" @@ -2188,10 +2197,10 @@ "html": "

\n If the [[type]] internal slot of key\n is not \"private\",\n then throw an\n InvalidAccessError.\n

" }, { - "html": "

\n Let label be the contents of the label member of\n normalizedAlgorithm or the empty octet string if the\n label member of\n normalizedAlgorithm is not present.\n

" + "html": "

\n Let label be the label member of\n normalizedAlgorithm or the empty byte sequence if the\n label member of\n normalizedAlgorithm is not present.\n

" }, { - "html": "

\n Perform the decryption operation defined in Section 7.1 of [RFC3447] with the key represented by key\n as the recipient's RSA private key, the contents of ciphertext\n as the ciphertext to be decrypted, C, and label\n as the label, L, and with the hash\n function specified by the hash\n attribute of the [[algorithm]] internal slot of\n key as the Hash option and MGF1 (defined in Section B.2.1 of\n [RFC3447]) as the MGF option.\n

" + "html": "

\n Perform the decryption operation defined in Section 7.1 of [RFC3447] with the key represented by key\n as the recipient's RSA private key, ciphertext\n as the ciphertext to be decrypted, C, and label\n as the label, L, and with the hash\n function specified by the hash\n attribute of the [[algorithm]] internal slot of\n key as the Hash option and MGF1 (defined in Section B.2.1 of\n [RFC3447]) as the MGF option.\n

" }, { "html": "

\n If performing the operation results in an error,\n then throw an\n OperationError.\n

" @@ -2736,10 +2745,10 @@ "html": "

\n Let n be the smallest integer such that n * 8 is greater than\n the logarithm to base 2 of the order of the base point of the elliptic curve identified\n by params.\n

" }, { - "html": "

\n Convert r to an octet string of\n length n and append this sequence of bytes to result.\n

" + "html": "

\n Convert r to a byte sequence of\n length n and append it to result.\n

" }, { - "html": "

\n Convert s to an octet string of\n length n and append this sequence of bytes to result.\n

" + "html": "

\n Convert s to a byte sequence of\n length n and append it to result.\n

" } ] }, @@ -3429,7 +3438,7 @@ "steps": [ { "case": "If the namedCurve attribute of the [[algorithm]] internal slot of key is \"P-256\", \"P-384\" or \"P-521\":", - "html": "Let keyData be the\n octet string that\n represents the Elliptic Curve public key represented by the [[handle]] internal slot of\n key according to the encoding rules specified in\n Section 2.2 of [RFC5480] and using the\n uncompressed form. and keyData.", + "html": "Let keyData be the\n byte sequence that\n represents the Elliptic Curve public key represented by the [[handle]] internal slot of\n key according to the encoding rules specified in\n Section 2.2 of [RFC5480] and using the\n uncompressed form. and keyData.", "rationale": ".switch", "steps": [ { @@ -3640,7 +3649,7 @@ "html": "

\n If the [[type]] internal slot\n of key is not \"public\", then throw an InvalidAccessError.\n

" }, { - "html": "
\n
\n If the namedCurve\n attribute of the [[algorithm]] internal slot\n of key is \"P-256\", \"P-384\"\n or \"P-521\":\n
\n
\n

\n Let data be an octet string representing the Elliptic Curve\n point Q represented by [[handle]] internal slot of\n key according to [SEC1] 2.3.3 using the uncompressed format.\n

\n
\n
Otherwise:
\n
\n

\n Perform any key export steps\n defined by other applicable\n specifications, passing format and the\n namedCurve attribute of\n the [[algorithm]]\n internal slot of key\n and obtaining namedCurve and data.\n

\n
\n
", + "html": "
\n
\n If the namedCurve\n attribute of the [[algorithm]] internal slot\n of key is \"P-256\", \"P-384\"\n or \"P-521\":\n
\n
\n

\n Let data be a byte sequence representing the Elliptic Curve\n point Q represented by the [[handle]] internal slot of\n key according to [SEC1] 2.3.3 using the uncompressed format.\n

\n
\n
Otherwise:
\n
\n

\n Perform any key export steps\n defined by other applicable\n specifications, passing format and the\n namedCurve attribute of\n the [[algorithm]]\n internal slot of key\n and obtaining namedCurve and data.\n

\n
\n
", "rationale": ".switch", "steps": [ { @@ -3648,7 +3657,7 @@ "steps": [ { "case": "If the namedCurve attribute of the [[algorithm]] internal slot of key is \"P-256\", \"P-384\" or \"P-521\":", - "html": "

\n Let data be an octet string representing the Elliptic Curve\n point Q represented by [[handle]] internal slot of\n key according to [SEC1] 2.3.3 using the uncompressed format.\n

" + "html": "

\n Let data be a byte sequence representing the Elliptic Curve\n point Q represented by the [[handle]] internal slot of\n key according to [SEC1] 2.3.3 using the uncompressed format.\n

" }, { "case": "Otherwise:", @@ -3797,7 +3806,7 @@ "html": "

\n Perform the ECDH primitive specified in [RFC6090] Section\n 4 with key as the EC private key d and the EC public\n key represented by the [[handle]]\n internal slot of publicKey as the EC public key.\n

" }, { - "html": "

\n Let secret be the result of applying the field element to\n octet string conversion defined in Section\n 6.2 of [RFC6090]\n to the output of the ECDH primitive.\n

" + "html": "

\n Let secret be a byte sequence containing\n the result of applying the field element to\n octet string conversion defined in Section\n 6.2 of [RFC6090]\n to the output of the ECDH primitive.\n

" } ] }, @@ -3817,7 +3826,7 @@ "html": "

\n If performing the operation results in an error,\n then throw a\n OperationError.\n

" }, { - "html": "
\n
If length is null:
\n
Return secret
\n
Otherwise:
\n
\n
\n
\n If the length of secret in bits is less than\n length:\n
\n
\n throw an\n OperationError.\n
\n
Otherwise:
\n
\n Return an octet string containing the first length bits of secret.\n
\n
\n
\n
", + "html": "
\n
If length is null:
\n
Return secret
\n
Otherwise:
\n
\n
\n
\n If the length in bits of secret is less than\n length:\n
\n
\n throw an\n OperationError.\n
\n
Otherwise:
\n
\n Return a byte sequence containing the first length bits of secret.\n
\n
\n
\n
", "rationale": ".switch", "steps": [ { @@ -3829,19 +3838,19 @@ }, { "case": "Otherwise:", - "html": "
\n
\n If the length of secret in bits is less than\n length:\n
\n
\n throw an\n OperationError.\n
\n
Otherwise:
\n
\n Return an octet string containing the first length bits of secret.\n
\n
", + "html": "
\n
\n If the length in bits of secret is less than\n length:\n
\n
\n throw an\n OperationError.\n
\n
Otherwise:
\n
\n Return a byte sequence containing the first length bits of secret.\n
\n
", "rationale": ".switch", "steps": [ { "operation": "switch", "steps": [ { - "case": "If the length of secret in bits is less than length:", + "case": "If the length in bits of secret is less than length:", "html": "throw an\n OperationError." }, { "case": "Otherwise:", - "html": "Return an octet string containing the first length bits of secret." + "html": "Return a byte sequence containing the first length bits of secret." } ] } @@ -4350,7 +4359,7 @@ "steps": [ { "case": "If the namedCurve attribute of the [[algorithm]] internal slot of key is \"P-256\", \"P-384\" or \"P-521\":", - "html": "Let keyData be the octet string that\n represents the Elliptic Curve public key represented by the [[handle]] internal slot of\n key according to the encoding rules specified in\n Section 2.3.3 of [SEC1] and using the\n uncompressed form.", + "html": "Let keyData be the byte sequence that\n represents the Elliptic Curve public key represented by the [[handle]] internal slot of\n key according to the encoding rules specified in\n Section 2.3.3 of [SEC1] and using the\n uncompressed form.", "rationale": ".switch", "steps": [ { @@ -4555,7 +4564,7 @@ "html": "

\n If the [[type]] internal slot\n of key is not \"public\", then throw an InvalidAccessError.\n

" }, { - "html": "
\n
\n If the namedCurve\n attribute of the [[algorithm]] internal slot\n of key is \"P-256\", \"P-384\"\n or \"P-521\":\n
\n
\n

\n Let data be the octet string that\n represents the Elliptic Curve public key represented by the [[handle]] internal slot of\n key according to the encoding rules specified in\n Section 2.3.3 of [SEC1] and using the\n uncompressed form.\n

\n
\n
Otherwise:
\n
\n

\n Perform any key export steps\n defined by other applicable\n specifications, passing format and the\n namedCurve attribute of\n the [[algorithm]]\n internal slot of key\n and obtaining namedCurve and data.\n

\n
\n
", + "html": "
\n
\n If the namedCurve\n attribute of the [[algorithm]] internal slot\n of key is \"P-256\", \"P-384\"\n or \"P-521\":\n
\n
\n

\n Let data be the byte sequence that\n represents the Elliptic Curve public key represented by the [[handle]] internal slot of\n key according to the encoding rules specified in\n Section 2.3.3 of [SEC1] and using the\n uncompressed form.\n

\n
\n
Otherwise:
\n
\n

\n Perform any key export steps\n defined by other applicable\n specifications, passing format and the\n namedCurve attribute of\n the [[algorithm]]\n internal slot of key\n and obtaining namedCurve and data.\n

\n
\n
", "rationale": ".switch", "steps": [ { @@ -4563,7 +4572,7 @@ "steps": [ { "case": "If the namedCurve attribute of the [[algorithm]] internal slot of key is \"P-256\", \"P-384\" or \"P-521\":", - "html": "

\n Let data be the octet string that\n represents the Elliptic Curve public key represented by the [[handle]] internal slot of\n key according to the encoding rules specified in\n Section 2.3.3 of [SEC1] and using the\n uncompressed form.\n

" + "html": "

\n Let data be the byte sequence that\n represents the Elliptic Curve public key represented by the [[handle]] internal slot of\n key according to the encoding rules specified in\n Section 2.3.3 of [SEC1] and using the\n uncompressed form.\n

" }, { "case": "Otherwise:", @@ -5018,7 +5027,7 @@ "html": "

\n If the [[type]] internal slot\n of key is not \"public\", then throw an InvalidAccessError.\n

" }, { - "html": "

\n Let data be an octet string representing the Ed25519\n public key represented by the [[handle]] internal slot of\n key.\n

" + "html": "

\n Let data be a byte sequence representing the Ed25519\n public key represented by the [[handle]] internal slot of\n key.\n

" }, { "html": "

\n Let result be data.\n

" @@ -5061,7 +5070,7 @@ "html": "

\n If secret is the all-zero value,\n then throw a OperationError.\n This check must be performed in constant-time, as per [RFC7748] Section 6.1.\n

" }, { - "html": "
\n
If length is null:
\n
Return secret
\n
Otherwise:
\n
\n
\n
\n If the length of secret in bits is less than\n length:\n
\n
\n throw an\n OperationError.\n
\n
Otherwise:
\n
\n Return an octet string containing the first length bits of secret.\n
\n
\n
\n
", + "html": "
\n
If length is null:
\n
Return secret
\n
Otherwise:
\n
\n
\n
\n If the length of secret in bits is less than\n length:\n
\n
\n throw an\n OperationError.\n
\n
Otherwise:
\n
\n Return a byte sequence containing the first length bits of secret.\n
\n
\n
\n
", "rationale": ".switch", "steps": [ { @@ -5073,7 +5082,7 @@ }, { "case": "Otherwise:", - "html": "
\n
\n If the length of secret in bits is less than\n length:\n
\n
\n throw an\n OperationError.\n
\n
Otherwise:
\n
\n Return an octet string containing the first length bits of secret.\n
\n
", + "html": "
\n
\n If the length of secret in bits is less than\n length:\n
\n
\n throw an\n OperationError.\n
\n
Otherwise:
\n
\n Return a byte sequence containing the first length bits of secret.\n
\n
", "rationale": ".switch", "steps": [ { @@ -5085,7 +5094,7 @@ }, { "case": "Otherwise:", - "html": "Return an octet string containing the first length bits of secret." + "html": "Return a byte sequence containing the first length bits of secret." } ] } @@ -5492,7 +5501,7 @@ "html": "

\n If the [[type]] internal slot\n of key is not \"public\", then throw an InvalidAccessError.\n

" }, { - "html": "

\n Let data be an octet string representing the X25519\n public key represented by the [[handle]] internal slot of\n key.\n

" + "html": "

\n Let data be a byte sequence representing the X25519\n public key represented by the [[handle]] internal slot of\n key.\n

" }, { "html": "

\n Let result be data.\n

" @@ -5517,13 +5526,13 @@ "rationale": "if", "steps": [ { - "html": "

\n If the counter member of\n normalizedAlgorithm does not have length 16\n bytes,\n then throw an\n OperationError.\n

" + "html": "

\n If the counter member of\n normalizedAlgorithm does not have\n a length of 16 bytes,\n then throw an\n OperationError.\n

" }, { "html": "

\n If the length member of\n normalizedAlgorithm is zero or is greater\n than 128,\n then throw an\n OperationError.\n

" }, { - "html": "

\n Let ciphertext be the result of performing the CTR Encryption\n operation described in Section 6.5 of [NIST-SP800-38A] using AES as the block cipher, the contents of the counter member of\n normalizedAlgorithm as the initial value of the counter block, the\n length member of\n normalizedAlgorithm as the input parameter m to the\n standard counter block incrementing function defined in Appendix B.1 of\n [NIST-SP800-38A] and the contents of\n plaintext as the input plaintext.\n

" + "html": "

\n Let ciphertext be the result of performing the CTR Encryption\n operation described in Section 6.5 of [NIST-SP800-38A] using AES as the block cipher, the counter member of\n normalizedAlgorithm as the initial value of the counter block, the\n length member of\n normalizedAlgorithm as the input parameter m to the\n standard counter block incrementing function defined in Appendix B.1 of\n [NIST-SP800-38A] and\n plaintext as the input plaintext.\n

" }, { "html": "

\n Return ciphertext.\n

" @@ -5535,13 +5544,13 @@ "rationale": "if", "steps": [ { - "html": "

\n If the counter member of\n normalizedAlgorithm does not have length 16\n bytes,\n then throw an\n OperationError.\n

" + "html": "

\n If the counter member of\n normalizedAlgorithm does not have\n a length of 16 bytes,\n then throw an\n OperationError.\n

" }, { "html": "

\n If the length member of\n normalizedAlgorithm is zero or is greater\n than 128,\n then throw an\n OperationError.\n

" }, { - "html": "

\n Let plaintext be the result of performing the CTR Decryption\n operation described in Section 6.5 of [NIST-SP800-38A] using AES as the block cipher, the contents of the counter member of\n normalizedAlgorithm as the initial value of the counter block, the\n length member of\n normalizedAlgorithm as the input parameter m to the\n standard counter block incrementing function defined in Appendix B.1 of\n [NIST-SP800-38A] and the contents of\n ciphertext as the input ciphertext.\n

" + "html": "

\n Let plaintext be the result of performing the CTR Decryption\n operation described in Section 6.5 of [NIST-SP800-38A] using AES as the block cipher, the counter member of\n normalizedAlgorithm as the initial value of the counter block, the\n length member of\n normalizedAlgorithm as the input parameter m to the\n standard counter block incrementing function defined in Appendix B.1 of\n [NIST-SP800-38A] and\n ciphertext as the input ciphertext.\n

" }, { "html": "

\n Return plaintext.\n

" @@ -5613,10 +5622,10 @@ "rationale": "let", "steps": [ { - "html": "

\n Let data be the octet string contained in keyData.\n

" + "html": "

\n Let data be keyData.\n

" }, { - "html": "

\n If the length in bits of data is not 128, 192 or 256\n then throw a\n DataError.\n

" + "html": "

\n If the length in bits of data is not 128, 192 or 256\n then throw a\n DataError.\n

" } ] }, @@ -5651,25 +5660,25 @@ "html": "

\n If jwk does not meet the requirements of\n Section 6.4 of JSON Web Algorithms [JWA],\n then throw a\n DataError.\n

" }, { - "html": "

\n Let data be the octet string obtained by decoding the\n k field of jwk.\n

" + "html": "

\n Let data be the byte sequence obtained by decoding the\n k field of jwk.\n

" }, { - "html": "
\n
If data has length 128 bits:
\n
\n If the alg field of jwk is present, and is\n not \"A128CTR\", then throw a DataError.\n
\n
If data has length 192 bits:
\n
\n If the alg field of jwk is present, and is\n not \"A192CTR\", then throw a DataError.\n
\n
If data has length 256 bits:
\n
\n If the alg field of jwk is present, and is\n not \"A256CTR\", then throw a DataError.\n
\n
Otherwise:
\n
\n throw a\n DataError.
\n
", + "html": "
\n
If the length in bits of data is 128:
\n
\n If the alg field of jwk is present, and is\n not \"A128CTR\", then throw a DataError.\n
\n
If the length in bits of data is 192:
\n
\n If the alg field of jwk is present, and is\n not \"A192CTR\", then throw a DataError.\n
\n
If the length in bits of data is 256:
\n
\n If the alg field of jwk is present, and is\n not \"A256CTR\", then throw a DataError.\n
\n
Otherwise:
\n
\n throw a\n DataError.
\n
", "rationale": ".switch", "steps": [ { "operation": "switch", "steps": [ { - "case": "If data has length 128 bits:", + "case": "If the length in bits of data is 128:", "html": "If the alg field of jwk is present, and is\n not \"A128CTR\", then throw a DataError." }, { - "case": "If data has length 192 bits:", + "case": "If the length in bits of data is 192:", "html": "If the alg field of jwk is present, and is\n not \"A192CTR\", then throw a DataError." }, { - "case": "If data has length 256 bits:", + "case": "If the length in bits of data is 256:", "html": "If the alg field of jwk is present, and is\n not \"A256CTR\", then throw a DataError." }, { @@ -5742,7 +5751,7 @@ "rationale": "let", "steps": [ { - "html": "

\n Let data be the raw octets of the key represented by [[handle]] internal slot of\n key.\n

" + "html": "

\n Let data be a byte sequence containing\n the raw octets of the key represented by the [[handle]] internal slot of\n key.\n

" }, { "html": "

\n Let result be data.\n

" @@ -5761,7 +5770,7 @@ "html": "

\n Set the kty attribute of jwk to the\n string \"oct\".\n

" }, { - "html": "

\n Set the k attribute of jwk to be a string\n containing the raw octets of the key represented by [[handle]] internal slot of\n key, encoded according to Section 6.4 of JSON Web Algorithms [JWA].\n

" + "html": "

\n Set the k attribute of jwk to be a string\n containing the raw octets of the key represented by the [[handle]] internal slot of\n key, encoded according to Section 6.4 of JSON Web Algorithms [JWA].\n

" }, { "html": "
\n
If the length attribute of\n key is 128:
\n
Set the alg attribute of jwk to\n the string \"A128CTR\".
\n
If the length attribute of\n key is 192:
\n
Set the alg attribute of jwk to\n the string \"A192CTR\".
\n
If the length attribute of\n key is 256:
\n
Set the alg attribute of jwk to\n the string \"A256CTR\".
\n
", @@ -5827,13 +5836,13 @@ "rationale": "if", "steps": [ { - "html": "

\n If the iv member of\n normalizedAlgorithm does not have length 16\n bytes,\n then throw an\n OperationError.\n

" + "html": "

\n If the iv member of\n normalizedAlgorithm does not have\n a length of 16 bytes,\n then throw an\n OperationError.\n

" }, { - "html": "

\n Let paddedPlaintext be the result of adding padding octets to\n the contents of plaintext\n according to the procedure defined in Section 10.3\n of [RFC2315], step 2, with a value of\n k of 16.\n

" + "html": "

\n Let paddedPlaintext be the result of adding padding octets to\n plaintext\n according to the procedure defined in Section 10.3\n of [RFC2315], step 2, with a value of\n k of 16.\n

" }, { - "html": "

\n Let ciphertext be the result of performing the CBC Encryption\n operation described in Section 6.2 of [NIST-SP800-38A] using AES as the block cipher, the contents of the iv member of normalizedAlgorithm as\n the IV input parameter and paddedPlaintext\n as the input plaintext.\n

" + "html": "

\n Let ciphertext be the result of performing the CBC Encryption\n operation described in Section 6.2 of [NIST-SP800-38A] using AES as the block cipher, the iv member of normalizedAlgorithm as\n the IV input parameter and paddedPlaintext\n as the input plaintext.\n

" }, { "html": "

\n Return ciphertext.\n

" @@ -5845,10 +5854,10 @@ "rationale": "if", "steps": [ { - "html": "

\n If the iv member of\n normalizedAlgorithm does not have length 16\n bytes,\n then throw an\n OperationError.\n

" + "html": "

\n If the iv member of\n normalizedAlgorithm does not have\n a length of 16 bytes,\n then throw an\n OperationError.\n

" }, { - "html": "

\n Let paddedPlaintext be the result of performing the CBC Decryption\n operation described in Section 6.2 of [NIST-SP800-38A] using AES as the block cipher, the contents of the iv member of normalizedAlgorithm as\n the IV input parameter and the contents of\n ciphertext as the input ciphertext.\n

" + "html": "

\n Let paddedPlaintext be the result of performing the CBC Decryption\n operation described in Section 6.2 of [NIST-SP800-38A] using AES as the block cipher, the iv member of normalizedAlgorithm as\n the IV input parameter and\n ciphertext as the input ciphertext.\n

" }, { "html": "

\n Let p be the value of the last octet of paddedPlaintext.\n

" @@ -5929,10 +5938,10 @@ "rationale": "let", "steps": [ { - "html": "

\n Let data be the octet string contained in keyData.\n

" + "html": "

\n Let data be keyData.\n

" }, { - "html": "

\n If the length in bits of data is not 128, 192 or 256\n then throw a\n DataError.\n

" + "html": "

\n If the length in bits of data is not 128, 192 or 256\n then throw a\n DataError.\n

" } ] }, @@ -5967,25 +5976,25 @@ "html": "

\n If jwk does not meet the requirements of\n Section 6.4 of JSON Web Algorithms [JWA],\n then throw a\n DataError.\n

" }, { - "html": "

\n Let data be the octet string obtained by decoding the\n k field of jwk.\n

" + "html": "

\n Let data be the byte sequence obtained by decoding the\n k field of jwk.\n

" }, { - "html": "
\n
If data has length 128 bits:
\n
If the alg field of jwk is present, and is\n not \"A128CBC\",\n then throw a\n DataError.
\n
If data has length 192 bits:
\n
If the alg field of jwk is present, and is\n not \"A192CBC\",\n then throw a\n DataError.
\n
If data has length 256 bits:
\n
If the alg field of jwk is present, and is\n not \"A256CBC\",\n then throw a\n DataError.
\n
Otherwise:
\n
\n throw a\n DataError.\n
\n
", + "html": "
\n
If the length in bits of data is 128:
\n
If the alg field of jwk is present, and is\n not \"A128CBC\",\n then throw a\n DataError.
\n
If the length in bits of data is 192:
\n
If the alg field of jwk is present, and is\n not \"A192CBC\",\n then throw a\n DataError.
\n
If the length in bits of data is 256:
\n
If the alg field of jwk is present, and is\n not \"A256CBC\",\n then throw a\n DataError.
\n
Otherwise:
\n
\n throw a\n DataError.\n
\n
", "rationale": ".switch", "steps": [ { "operation": "switch", "steps": [ { - "case": "If data has length 128 bits:", + "case": "If the length in bits of data is 128:", "html": "If the alg field of jwk is present, and is\n not \"A128CBC\",\n then throw a\n DataError." }, { - "case": "If data has length 192 bits:", + "case": "If the length in bits of data is 192:", "html": "If the alg field of jwk is present, and is\n not \"A192CBC\",\n then throw a\n DataError." }, { - "case": "If data has length 256 bits:", + "case": "If the length in bits of data is 256:", "html": "If the alg field of jwk is present, and is\n not \"A256CBC\",\n then throw a\n DataError." }, { @@ -6058,7 +6067,7 @@ "rationale": "let", "steps": [ { - "html": "

\n Let data be the raw octets of the key represented by [[handle]] internal slot of\n key.\n

" + "html": "

\n Let data be a byte sequence containing\n the raw octets of the key represented by the [[handle]] internal slot of\n key.\n

" }, { "html": "

\n Let result be data.\n

" @@ -6077,7 +6086,7 @@ "html": "

\n Set the kty attribute of jwk to the\n string \"oct\".\n

" }, { - "html": "

\n Set the k attribute of jwk to be a string\n containing the raw octets of the key represented by [[handle]] internal slot of\n key, encoded according to Section 6.4 of JSON Web Algorithms [JWA].\n

" + "html": "

\n Set the k attribute of jwk to be a string\n containing the raw octets of the key represented by the [[handle]] internal slot of\n key, encoded according to Section 6.4 of JSON Web Algorithms [JWA].\n

" }, { "html": "
\n
If the length attribute of\n key is 128:
\n
Set the alg attribute of jwk to\n the string \"A128CBC\".
\n
If the length attribute of\n key is 192:
\n
Set the alg attribute of jwk to\n the string \"A192CBC\".
\n
If the length attribute of\n key is 256:
\n
Set the alg attribute of jwk to\n the string \"A256CBC\".
\n
", @@ -6143,13 +6152,13 @@ "rationale": "if", "steps": [ { - "html": "

\n If plaintext has a length greater than 2^39 - 256\n bytes,\n then throw an\n OperationError.\n

" + "html": "

\n If plaintext has a length\n greater than 2^39 - 256 bytes,\n then throw an\n OperationError.\n

" }, { - "html": "

\n If the iv member of\n normalizedAlgorithm has a length greater than 2^64 - 1\n bytes,\n then throw an\n OperationError.\n

" + "html": "

\n If the iv member of\n normalizedAlgorithm has a length\n greater than 2^64 - 1 bytes,\n then throw an\n OperationError.\n

" }, { - "html": "

\n If the additionalData member\n of normalizedAlgorithm is present and has a length\n greater than 2^64 - 1 bytes,\n then throw an\n OperationError.\n

" + "html": "

\n If the additionalData member\n of normalizedAlgorithm is present and has a\n length\n greater than 2^64 - 1 bytes,\n then throw an\n OperationError.\n

" }, { "html": "
\n
If the tagLength member of\n normalizedAlgorithm is not present:
\n
Let tagLength be 128.
\n
If the tagLength member of\n normalizedAlgorithm is one of 32, 64, 96, 104, 112, 120 or 128:
\n
Let tagLength be equal to the\n tagLength member of\n normalizedAlgorithm
\n
Otherwise:
\n
\n throw an\n OperationError.\n
\n
", @@ -6175,10 +6184,10 @@ ] }, { - "html": "

\n Let additionalData be the contents of the additionalData member of\n normalizedAlgorithm if present or the empty octet\n string otherwise.\n

" + "html": "

\n Let additionalData be the additionalData member of\n normalizedAlgorithm if present or an empty byte sequence\n otherwise.\n

" }, { - "html": "

\n Let C and T be the outputs that result from performing\n the Authenticated Encryption Function described in Section 7.1 of\n [NIST-SP800-38D] using AES as the block cipher, the contents of the iv member of normalizedAlgorithm as\n the IV input parameter, the contents of\n additionalData as the A input parameter,\n tagLength as the t pre-requisite and the contents of\n plaintext as the input plaintext.\n

" + "html": "

\n Let C and T be the outputs that result from performing\n the Authenticated Encryption Function described in Section 7.1 of\n [NIST-SP800-38D] using AES as the block cipher, the iv member of normalizedAlgorithm as\n the IV input parameter,\n additionalData as the A input parameter,\n tagLength as the t pre-requisite and\n plaintext as the input plaintext.\n

" }, { "html": "

\n Let ciphertext be equal to C | T,\n where '|' denotes concatenation.\n

" @@ -6216,13 +6225,13 @@ ] }, { - "html": "

\n If ciphertext has a length less than tagLength bits,\n then throw an\n OperationError.\n

" + "html": "

\n If ciphertext has a length in bits less than tagLength,\n then throw an\n OperationError.\n

" }, { - "html": "

\n If the iv member of\n normalizedAlgorithm has a length greater than 2^64 - 1\n bytes,\n then throw an\n OperationError.\n

" + "html": "

\n If the iv member of\n normalizedAlgorithm has a length\n greater than 2^64 - 1 bytes,\n then throw an\n OperationError.\n

" }, { - "html": "

\n If the additionalData member\n of normalizedAlgorithm is present and has a length\n greater than 2^64 - 1\n bytes,\n then throw an\n OperationError.\n

" + "html": "

\n If the additionalData member\n of normalizedAlgorithm is present and has a\n length\n greater than 2^64 - 1 bytes,\n then throw an\n OperationError.\n

" }, { "html": "

\n Let tag be the last tagLength bits of\n ciphertext.\n

" @@ -6231,10 +6240,10 @@ "html": "

\n Let actualCiphertext be the result of removing the last tagLength bits\n from ciphertext.\n

" }, { - "html": "

\n Let additionalData be the contents of the additionalData member of\n normalizedAlgorithm if present or the empty octet\n string otherwise.\n

" + "html": "

\n Let additionalData be the additionalData member of\n normalizedAlgorithm if present or an empty byte sequence\n otherwise.\n

" }, { - "html": "Perform the Authenticated Decryption Function described in Section 7.2 of\n [NIST-SP800-38D] using AES as the block cipher,\n the contents of the iv member of normalizedAlgorithm as\n the IV input parameter, the contents of\n additionalData as the A input parameter,\n tagLength as the t pre-requisite, the contents of\n actualCiphertext as the input ciphertext, C and the contents of tag as\n the authentication tag, T.", + "html": "Perform the Authenticated Decryption Function described in Section 7.2 of\n [NIST-SP800-38D] using AES as the block cipher,\n the iv member of normalizedAlgorithm as\n the IV input parameter,\n additionalData as the A input parameter,\n tagLength as the t pre-requisite,\n actualCiphertext as the input ciphertext, C and tag as\n the authentication tag, T.", "rationale": ".switch", "steps": [ { @@ -6322,10 +6331,10 @@ "rationale": "let", "steps": [ { - "html": "

\n Let data be the octet string contained in keyData.\n

" + "html": "

\n Let data be keyData.\n

" }, { - "html": "

\n If the length in bits of data is not 128, 192 or 256\n then throw a\n DataError.\n

" + "html": "

\n If the length in bits of data is not 128, 192 or 256\n then throw a\n DataError.\n

" } ] }, @@ -6360,25 +6369,25 @@ "html": "

\n If jwk does not meet the requirements of\n Section 6.4 of JSON Web Algorithms [JWA],\n then throw a\n DataError.\n

" }, { - "html": "

\n Let data be the octet string obtained by decoding the\n k field of jwk.\n

" + "html": "

\n Let data be the byte sequence obtained by decoding the\n k field of jwk.\n

" }, { - "html": "
\n
If data has length 128 bits:
\n
If the alg field of jwk is present, and is\n not \"A128GCM\",\n then throw a\n DataError.
\n
If data has length 192 bits:
\n
If the alg field of jwk is present, and is\n not \"A192GCM\",\n then throw a\n DataError.
\n
If data has length 256 bits:
\n
If the alg field of jwk is present, and is\n not \"A256GCM\",\n then throw a\n DataError.
\n
Otherwise:
\n
\n throw a\n DataError.\n
\n
", + "html": "
\n
If the length in bits of data is 128:
\n
If the alg field of jwk is present, and is\n not \"A128GCM\",\n then throw a\n DataError.
\n
If the length in bits of data is 192:
\n
If the alg field of jwk is present, and is\n not \"A192GCM\",\n then throw a\n DataError.
\n
If the length in bits of data is 256:
\n
If the alg field of jwk is present, and is\n not \"A256GCM\",\n then throw a\n DataError.
\n
Otherwise:
\n
\n throw a\n DataError.\n
\n
", "rationale": ".switch", "steps": [ { "operation": "switch", "steps": [ { - "case": "If data has length 128 bits:", + "case": "If the length in bits of data is 128:", "html": "If the alg field of jwk is present, and is\n not \"A128GCM\",\n then throw a\n DataError." }, { - "case": "If data has length 192 bits:", + "case": "If the length in bits of data is 192:", "html": "If the alg field of jwk is present, and is\n not \"A192GCM\",\n then throw a\n DataError." }, { - "case": "If data has length 256 bits:", + "case": "If the length in bits of data is 256:", "html": "If the alg field of jwk is present, and is\n not \"A256GCM\",\n then throw a\n DataError." }, { @@ -6451,7 +6460,7 @@ "rationale": "let", "steps": [ { - "html": "

\n Let data be the raw octets of the key represented by [[handle]] internal slot of\n key.\n

" + "html": "

\n Let data be a byte sequence containing\n the raw octets of the key represented by the [[handle]] internal slot of\n key.\n

" }, { "html": "

\n Let result be data.\n

" @@ -6470,7 +6479,7 @@ "html": "

\n Set the kty attribute of jwk to the\n string \"oct\".\n

" }, { - "html": "

\n Set the k attribute of jwk to be a string\n containing the raw octets of the key represented by [[handle]] internal slot of\n key, encoded according to Section 6.4 of JSON Web Algorithms [JWA].\n

" + "html": "

\n Set the k attribute of jwk to be a string\n containing the raw octets of the key represented by the [[handle]] internal slot of\n key, encoded according to Section 6.4 of JSON Web Algorithms [JWA].\n

" }, { "html": "
\n
If the length attribute of\n key is 128:
\n
Set the alg attribute of jwk to\n the string \"A128GCM\".
\n
If the length attribute of\n key is 192:
\n
Set the alg attribute of jwk to\n the string \"A192GCM\".
\n
If the length attribute of\n key is 256:
\n
Set the alg attribute of jwk to\n the string \"A256GCM\".
\n
", @@ -6626,10 +6635,10 @@ "rationale": "let", "steps": [ { - "html": "

\n Let data be the octet string contained in keyData.\n

" + "html": "

\n Let data be keyData.\n

" }, { - "html": "

\n If the length in bits of data is not 128, 192 or 256\n\n then throw a\n DataError.\n

" + "html": "

\n If the length in bits of data is not 128, 192 or 256\n then throw a\n DataError.\n

" } ] }, @@ -6664,25 +6673,25 @@ "html": "

\n If jwk does not meet the requirements of\n Section 6.4 of JSON Web Algorithms [JWA],\n then throw a\n DataError.\n

" }, { - "html": "

\n Let data be the octet string obtained by decoding the\n k field of jwk.\n

" + "html": "

\n Let data be the byte sequence obtained by decoding the\n k field of jwk.\n

" }, { - "html": "
\n
If data has length 128 bits:
\n
If the alg field of jwk is present, and is\n not \"A128KW\",\n then throw a\n DataError.
\n
If data has length 192 bits:
\n
If the alg field of jwk is present, and is\n not \"A192KW\",\n then throw a\n DataError.
\n
If data has length 256 bits:
\n
If the alg field of jwk is present, and is\n not \"A256KW\",\n then throw a\n DataError.
\n
Otherwise:
\n
\n throw a\n DataError.\n
\n
", + "html": "
\n
If the length in bits of data is 128:
\n
If the alg field of jwk is present, and is\n not \"A128KW\",\n then throw a\n DataError.
\n
If the length in bits of data is 192:
\n
If the alg field of jwk is present, and is\n not \"A192KW\",\n then throw a\n DataError.
\n
If the length in bits of data is 256:
\n
If the alg field of jwk is present, and is\n not \"A256KW\",\n then throw a\n DataError.
\n
Otherwise:
\n
\n throw a\n DataError.\n
\n
", "rationale": ".switch", "steps": [ { "operation": "switch", "steps": [ { - "case": "If data has length 128 bits:", + "case": "If the length in bits of data is 128:", "html": "If the alg field of jwk is present, and is\n not \"A128KW\",\n then throw a\n DataError." }, { - "case": "If data has length 192 bits:", + "case": "If the length in bits of data is 192:", "html": "If the alg field of jwk is present, and is\n not \"A192KW\",\n then throw a\n DataError." }, { - "case": "If data has length 256 bits:", + "case": "If the length in bits of data is 256:", "html": "If the alg field of jwk is present, and is\n not \"A256KW\",\n then throw a\n DataError." }, { @@ -6755,7 +6764,7 @@ "rationale": "let", "steps": [ { - "html": "

\n Let data be the raw octets of the key represented by [[handle]] internal slot of\n key.\n

" + "html": "

\n Let data be a byte sequence containing\n the raw octets of the key represented by the [[handle]] internal slot of\n key.\n

" }, { "html": "

\n Let result be data.\n

" @@ -6774,7 +6783,7 @@ "html": "

\n Set the kty attribute of jwk to the\n string \"oct\".\n

" }, { - "html": "

\n Set the k attribute of jwk to be a string\n containing the raw octets of the key represented by [[handle]] internal slot of\n key, encoded according to Section 6.4 of JSON Web Algorithms [JWA].\n

" + "html": "

\n Set the k attribute of jwk to be a string\n containing the raw octets of the key represented by the [[handle]] internal slot of\n key, encoded according to Section 6.4 of JSON Web Algorithms [JWA].\n

" }, { "html": "
\n
If the length attribute of\n key is 128:
\n
Set the alg attribute of jwk to\n the string \"A128KW\".
\n
If the length attribute of\n key is 192:
\n
Set the alg attribute of jwk to\n the string \"A192KW\".
\n
If the length attribute of\n key is 256:
\n
Set the alg attribute of jwk to\n the string \"A256KW\".
\n
", @@ -6840,7 +6849,7 @@ "rationale": "let", "steps": [ { - "html": "

\n Let mac be the result of performing the MAC Generation operation\n described in Section 4 of [FIPS-198-1] using\n the key represented by [[handle]]\n internal slot of key, the hash function identified by the hash attribute of the [[algorithm]] internal slot of\n key and message as the input data text.\n

" + "html": "

\n Let mac be the result of performing the MAC Generation operation\n described in Section 4 of [FIPS-198-1] using\n the key represented by the [[handle]]\n internal slot of key, the hash function identified by the hash attribute of the [[algorithm]] internal slot of\n key and message as the input data text.\n

" }, { "html": "

\n Return mac.\n

" @@ -6852,7 +6861,7 @@ "rationale": "let", "steps": [ { - "html": "

\n Let mac be the result of performing the MAC Generation operation\n described in Section 4 of [FIPS-198-1] using\n the key represented by [[handle]]\n internal slot of key, the hash function identified by the hash attribute of the [[algorithm]] internal slot of\n key and message as the input data text.\n

" + "html": "

\n Let mac be the result of performing the MAC Generation operation\n described in Section 4 of [FIPS-198-1] using\n the key represented by the [[handle]]\n internal slot of key, the hash function identified by the hash attribute of the [[algorithm]] internal slot of\n key and message as the input data text.\n

" }, { "html": "

\n Return true if mac is equal to signature and false\n otherwise.\n

" @@ -6959,7 +6968,7 @@ "rationale": "let", "steps": [ { - "html": "

\n Let data be the octet string contained in keyData.\n

" + "html": "

\n Let data be keyData.\n

" }, { "html": "

\n Set hash to equal the hash\n member of normalizedAlgorithm.\n

" @@ -6997,7 +7006,7 @@ "html": "

\n If jwk does not meet the requirements of\n Section 6.4 of JSON Web Algorithms [JWA],\n then throw a\n DataError.\n

" }, { - "html": "

\n Let data be the octet string obtained by decoding the\n k field of jwk.\n

" + "html": "

\n Let data be the byte sequence obtained by decoding the\n k field of jwk.\n

" }, { "html": "

\n Set the hash to equal the hash member of\n normalizedAlgorithm.\n

" @@ -7053,7 +7062,7 @@ ] }, { - "html": "

\n Let length be equivalent to the length, in octets, of\n data, multiplied by 8.\n

" + "html": "

\n Let length be the length in bits of\n data.\n

" }, { "html": "

\n If length is zero\n then throw a\n DataError.\n

" @@ -7127,10 +7136,10 @@ "html": "

\n If the underlying cryptographic key material represented by the [[handle]] internal slot of key\n cannot be accessed, then throw an OperationError.\n

" }, { - "html": "

\n Let bits be the raw bits of the key represented by [[handle]] internal slot of\n key.\n

" + "html": "

\n Let bits be the raw bits of the key represented by the [[handle]] internal slot of\n key.\n

" }, { - "html": "

\n Let data be an octet string containing bits.\n

" + "html": "

\n Let data be a byte sequence containing bits.\n

" }, { "html": "
\n
If format is \"raw\":
\n
\n \n
\n
If format is \"jwk\":
\n
\n \n
\n
Otherwise:
\n
\n

\n throw a\n NotSupportedError.\n

\n
\n
", @@ -7312,10 +7321,10 @@ "html": "

\n If length is null or is not a multiple of 8, then throw an OperationError.\n

" }, { - "html": "

\n Let keyDerivationKey be the secret represented by [[handle]] internal slot of key.\n

" + "html": "

\n Let keyDerivationKey be the secret represented by the [[handle]] internal slot of key.\n

" }, { - "html": "

\n Let result be the result of performing the HKDF extract and then\n the HKDF expand step described in Section 2 of\n [RFC5869] using:\n

\n " + "html": "

\n Let result be the result of performing the HKDF extract and then\n the HKDF expand step described in Section 2 of\n [RFC5869] using:\n

\n " }, { "html": "

\n If the key derivation operation fails,\n then throw an\n OperationError.\n

" @@ -7406,7 +7415,7 @@ "html": "

\n Let prf be the MAC Generation function described in Section 4 of\n [FIPS-198-1] using the hash function\n described by the hash member of\n normalizedAlgorithm.\n

" }, { - "html": "

\n Let result be the result of performing the PBKDF2 operation defined\n in Section 5.2 of [RFC8018] using prf as the\n pseudo-random function, PRF, the password represented by [[handle]] internal slot of key\n as the password, P, the\n contents of the salt attribute of\n normalizedAlgorithm as the salt, S, the value of the iterations attribute of\n normalizedAlgorithm as the iteration count, c, and\n length divided by 8 as the intended key length, dkLen.\n

" + "html": "

\n Let result be the result of performing the PBKDF2 operation defined\n in Section 5.2 of [RFC8018] using prf as the\n pseudo-random function, PRF, the password represented by the [[handle]] internal slot of key\n as the password, P,\n the salt attribute of\n normalizedAlgorithm as the salt, S, the value of the iterations attribute of\n normalizedAlgorithm as the iteration count, c, and\n length divided by 8 as the intended key length, dkLen.\n

" }, { "html": "

\n If the key derivation operation fails,\n then throw an\n OperationError.\n

" diff --git a/ed/algorithms/shared-storage.json b/ed/algorithms/shared-storage.json index 97e28eb9f77c..0eb2116ef3a1 100644 --- a/ed/algorithms/shared-storage.json +++ b/ed/algorithms/shared-storage.json @@ -298,7 +298,7 @@ ] }, { - "html": "

If pendingBits is greather than remainingBudget, set shouldUseDefaultIndex to true.

" + "html": "

If pendingBits is greater than remainingBudget, set shouldUseDefaultIndex to true.

" }, { "html": "

If shouldUseDefaultIndex is true, set resultIndex to the default selectURL index.

" @@ -673,7 +673,7 @@ { "name": "set up the Private Aggregation scopes", "href": "https://wicg.github.io/shared-storage/#set-up-the-private-aggregation-scopes", - "html": "To set up the Private Aggregation scopes given an origin workletDataOrigin, a pre-specified report parameters or null preSpecifiedParams and an aggregation coordinator or null aggregationCoordinator, peform the following steps. They return an\n algorithm.", + "html": "To set up the Private Aggregation scopes given an origin workletDataOrigin, a pre-specified report parameters or null preSpecifiedParams and an aggregation coordinator or null aggregationCoordinator, perform the following steps. They return an\n algorithm.", "rationale": ".algorithm", "steps": [ { @@ -1098,7 +1098,7 @@ { "name": "check for script and context origin match", "href": "https://wicg.github.io/shared-storage/#check-for-script-and-context-origin-match", - "html": "To check for script and context origin match, given trusted origin type itemScriptOrigin, origin actualScriptOrigin, trusted origin type itemContextOrigin, and origin actualContextOrigin, peform the following steps:", + "html": "To check for script and context origin match, given trusted origin type itemScriptOrigin, origin actualScriptOrigin, trusted origin type itemContextOrigin, and origin actualContextOrigin, perform the following steps:", "rationale": ".algorithm", "steps": [ { @@ -1112,7 +1112,7 @@ { "name": "check for trusted origin match", "href": "https://wicg.github.io/shared-storage/#check-for-trusted-origin-match", - "html": "To check for trusted origin match, given trusted origin type itemOrigin and origin actualOrigin, peform the following steps:", + "html": "To check for trusted origin match, given trusted origin type itemOrigin and origin actualOrigin, perform the following steps:", "rationale": ".algorithm", "steps": [ { @@ -1135,7 +1135,7 @@ { "name": "check for trusted origin match on a string", "href": "https://wicg.github.io/shared-storage/#check-for-trusted-origin-match-on-a-string", - "html": "To check for trusted origin match on a string, given string itemOrigin and origin actualOrigin, peform the following steps:", + "html": "To check for trusted origin match on a string, given string itemOrigin and origin actualOrigin, perform the following steps:", "rationale": ".algorithm", "steps": [ { @@ -2725,7 +2725,7 @@ ] }, { - "html": "

Otherwise, let entry be the result of dequeueing from iterator’s pending entries.

" + "html": "

Otherwise, let entry be the result of dequeuing from iterator’s pending entries.

" }, { "html": "

Queue a global task on the DOM manipulation task source, given realm’s global object, to resolve promise with entry.

" diff --git a/ed/algorithms/webrtc.json b/ed/algorithms/webrtc.json index bbd9ad42f2b9..8a3d2a4c0bd9 100644 --- a/ed/algorithms/webrtc.json +++ b/ed/algorithms/webrtc.json @@ -632,7 +632,7 @@ "rationale": "for", "steps": [ { - "html": "

For each encoding in\n transceiver.[[Sender]].[[SendEncodings]],\n if encoding.codec does not\n match any entry in codecs,\n remove encoding[codec].

" + "html": "

For each encoding in\n transceiver.[[Sender]].[[SendEncodings]],\n if encoding.codec does not match any entry in\n codecs, using the codec dictionary match algorithm with ignoreLevels\n set to true, remove encoding.codec.

" } ] } @@ -872,10 +872,10 @@ "html": "" }, { - "html": "

\n If\n transceiver.direction\n is \"sendonly\"\n or \"sendrecv\",\n exclude any codecs not included in the\n list of implemented send codecs for\n kind.\n

" + "html": "

\n If\n transceiver.direction\n is \"sendonly\"\n or \"sendrecv\",\n exclude any codecs not included in the\n list of implemented send codecs for\n kind, using the codec dictionary match\n algorithm with ignoreLevels set to\n true.

\n

" }, { - "html": "

\n If\n transceiver.direction\n is \"recvonly\"\n or \"sendrecv\",\n exclude any codecs not included in the\n list of implemented receive codecs for\n kind.\n

" + "html": "

\n If\n transceiver.direction\n is \"recvonly\"\n or \"sendrecv\",\n exclude any codecs not included in the\n list of implemented receive codecs for\n kind, using the codec dictionary match\n algorithm with ignoreLevels set to\n true.\n

" } ] }, @@ -976,10 +976,10 @@ "html": "

Let kind be transceiver's\n [[Receiver]]'s\n [[ReceiverTrack]]'s\n kind.

" }, { - "html": "

\n If\n transceiver.direction\n is \"sendonly\"\n or \"sendrecv\",\n exclude any codecs not included in the\n list of implemented send codecs for\n kind.\n

" + "html": "

\n If\n transceiver.direction\n is \"sendonly\"\n or \"sendrecv\",\n exclude any codecs not included in the\n list of implemented send codecs for\n kind, using the codec dictionary match\n algorithm with ignoreLevels set to\n true.\n

" }, { - "html": "

\n If\n transceiver.direction\n is \"recvonly\"\n or \"sendrecv\",\n exclude any codecs not included in the\n list of implemented receive codecs for\n kind.\n

" + "html": "

\n If\n transceiver.direction\n is \"recvonly\"\n or \"sendrecv\",\n exclude any codecs not included in the\n list of implemented receive codecs for\n kind, using the codec dictionary match\n algorithm with ignoreLevels set to\n true.\n

" } ] }, @@ -2016,7 +2016,7 @@ "html": "

\n If any encoding contains a read-only\n parameter other than\n rid, throw\n an InvalidAccessError.\n

" }, { - "html": "

\n If any encoding contains a\n codec member whose value does\n not match any codec in RTCRtpSender.getCapabilities(kind).codecs,\n throw an OperationError.

" + "html": "

\n If any encoding contains a\n codec member whose value does\n not match any codec in RTCRtpSender.getCapabilities(kind).codecs,\n throw an OperationError.

" }, { "html": "

If the user agent does not support changing codecs without negotiation or\n does not support setting codecs for individual encodings, return a promise\n rejected with a newly created OperationError.

" @@ -2270,7 +2270,7 @@ "html": "Let N be the number\n of RTCRtpEncodingParameters stored in\n sender.[[SendEncodings]]." }, { - "html": "If any of the following conditions are met, return a\n promise rejected with a newly created InvalidModificationError:\n " + "html": "If any of the following conditions are met, return a\n promise rejected with a newly created InvalidModificationError:\n " }, { "html": "

\n If transceiver kind is \"audio\", remove the\n scaleResolutionDownBy and\n maxFramerate\n members from all encodings that\n contain any of them.\n

" @@ -2818,7 +2818,7 @@ "html": "

\n If codecs is an empty list, set\n transceiver.[[PreferredCodecs]] to\n codecs and abort these steps.\n

" }, { - "html": "

\n Remove any duplicate values in\n codecs, ensuring that the first occurrence of each\n value remains in place.\n

" + "html": "

\n Remove any duplicate values in\n codecs, ensuring that the first occurrence of each\n value remains in place.\n

" }, { "html": "

\n Let kind be the transceiver's transceiver kind.\n

" @@ -2831,7 +2831,7 @@ "rationale": "if", "steps": [ { - "html": "

If codec does not match any codec\n in codecCapabilities, throw InvalidModificationError.\n

" + "html": "

If codec does not match any codec\n in codecCapabilities, throw InvalidModificationError.\n

" } ] }, @@ -2846,7 +2846,7 @@ { "name": "codec dictionary match", "href": "https://w3c.github.io/webrtc-pc/#dfn-codec-dictionary-match", - "html": "The codec dictionary match algorithm\n given two RTCRtpCodec dictionaries\n first and second is as follows:", + "html": "
\n

\n The setCodecPreferences method overrides the default\n codec preferences used by the user agent as input to\n negotiation. When generating a session description using\n either createOffer or\n createAnswer, the user agent MUST\n filter the preferred codecs on direction\n and, if this results in a non-empty list, it MUST use the\n specified codecs in the order of the codecs\n argument, for the media section corresponding to this\n RTCRtpTransceiver.\n

\n

\n This method allows applications to disable the negotiation of\n specific codecs (including RTX/RED/FEC) by listing all codecs\n except for the ones to disable.\n

\n \n \n \n

\n Codec preferences remain in effect for all calls to\n createOffer and\n createAnswer that include this\n RTCRtpTransceiver until this method is called again.\n Setting codecs to an empty sequence, or one that\n becomes empty after direction filtering,\n results in default codec preferences.\n

\n \n

\n setCodecPreferences will reject attempts to set\n codecs not matching\n codecs found in either\n RTCRtpSender.getCapabilities(kind)\n or\n RTCRtpReceiver.getCapabilities(kind),\n where kind is the kind of the\n RTCRtpTransceiver on which the method is called.\n

\n

\n When setCodecPreferences() is invoked, the user\n agent MUST run the following steps:\n

\n \n\t\t
\n
\n

\n The codec dictionary match algorithm given two\n RTCRtpCodec dictionaries first and second, and\n an ignoreLevels boolean defaulting to false if not\n specified, is as follows:\n

\n
", "rationale": ".algorithm", "steps": [ { @@ -2859,7 +2859,25 @@ "html": "

\n If either (but not both) of first.channels\n and second.channels are missing,\n or if they both exist and first.channels\n is different from second.channels, return\n false.\n

" }, { - "html": "

\n If either (but not both) of first.sdpFmtpLine\n and second.sdpFmtpLine are missing,\n or if they both exist and first.sdpFmtpLine\n is different from second.sdpFmtpLine, return\n false.\n

" + "html": "

\n If either (but not both) of first.sdpFmtpLine\n and second.sdpFmtpLine are missing,\n return false.\n

" + }, + { + "html": "If both first.sdpFmtpLine and\n second.sdpFmtpLine exist, run the following\n steps:", + "rationale": "if", + "steps": [ + { + "html": "

\n If either of first.sdpFmtpLine and\n second.sdpFmtpLine is not in key-value format,\n return the result of performing an equals comparison between\n first.sdpFmtpLine and\n second.sdpFmtpLine.\n

" + }, + { + "html": "

\n Let firstMediaFormat be a key-value map of the media formats constructed\n from first.sdpFmtpLine and secondMediaFormat\n be a key-value map of the media formats constructed from\n second.sdpFmtpLine.\n

" + }, + { + "html": "

\n If firstMediaFormat is not equal to secondMediaFormat, return\n false.\n

" + }, + { + "html": "
\n

\n If ignoreLevels is false and the highest complying bitstream\n levels inferred from first.sdpFmtpLine and\n second.sdpFmtpLine are different, return false.\n

\n \n
" + } + ] }, { "html": "

\n Return true.\n

" diff --git a/ed/dfns/WebCryptoAPI.json b/ed/dfns/WebCryptoAPI.json index 9519d410b6fb..3423bfb33ff5 100644 --- a/ed/dfns/WebCryptoAPI.json +++ b/ed/dfns/WebCryptoAPI.json @@ -62,10 +62,10 @@ "definedIn": "prose" }, { - "id": "dfn-octet-string", - "href": "https://w3c.github.io/webcrypto/#dfn-octet-string", + "id": "dfn-length-in-bits", + "href": "https://w3c.github.io/webcrypto/#dfn-length-in-bits", "linkingText": [ - "octet string" + "length in bits" ], "localLinkingText": [], "type": "dfn", @@ -81,11 +81,11 @@ "definedIn": "prose" }, { - "id": "dfn-octet-string-containing", - "href": "https://w3c.github.io/webcrypto/#dfn-octet-string-containing", + "id": "dfn-byte-sequence-containing", + "href": "https://w3c.github.io/webcrypto/#dfn-byte-sequence-containing", "linkingText": [ - "octet string containing", - "octet string containing a bit string" + "byte sequence containing", + "byte sequence containing a bit sequence" ], "localLinkingText": [], "type": "dfn", @@ -101,10 +101,10 @@ "definedIn": "prose" }, { - "id": "dfn-convert-integer-to-octet-string", - "href": "https://w3c.github.io/webcrypto/#dfn-convert-integer-to-octet-string", + "id": "dfn-convert-integer-to-byte-sequence", + "href": "https://w3c.github.io/webcrypto/#dfn-convert-integer-to-byte-sequence", "linkingText": [ - "convert a non-negative integer i to an octet string of length n" + "convert a non-negative integer i to a byte sequence of length n" ], "localLinkingText": [], "type": "dfn", @@ -255,25 +255,6 @@ }, "definedIn": "prose" }, - { - "id": "concept-contents-of-arraybuffer", - "href": "https://w3c.github.io/webcrypto/#concept-contents-of-arraybuffer", - "linkingText": [ - "contents of an ArrayBuffer" - ], - "localLinkingText": [], - "type": "dfn", - "for": [], - "access": "private", - "informative": false, - "heading": { - "id": "terminology", - "href": "https://w3c.github.io/webcrypto/#terminology", - "title": "Terminology", - "number": "9" - }, - "definedIn": "prose" - }, { "id": "concept-usage-intersection", "href": "https://w3c.github.io/webcrypto/#concept-usage-intersection", diff --git a/ed/ids/WebCryptoAPI.json b/ed/ids/WebCryptoAPI.json index d03d9fd071ae..f15bd660a6cd 100644 --- a/ed/ids/WebCryptoAPI.json +++ b/ed/ids/WebCryptoAPI.json @@ -97,11 +97,9 @@ "https://w3c.github.io/webcrypto/#terminology", "https://w3c.github.io/webcrypto/#x9-terminology", "https://w3c.github.io/webcrypto/#dfn-serializable-objects", - "https://w3c.github.io/webcrypto/#dfn-octet-string", - "https://w3c.github.io/webcrypto/#dfn-octet-string-containing", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-1", - "https://w3c.github.io/webcrypto/#dfn-convert-integer-to-octet-string", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-2", + "https://w3c.github.io/webcrypto/#dfn-length-in-bits", + "https://w3c.github.io/webcrypto/#dfn-byte-sequence-containing", + "https://w3c.github.io/webcrypto/#dfn-convert-integer-to-byte-sequence", "https://w3c.github.io/webcrypto/#case-sensitive", "https://w3c.github.io/webcrypto/#case-insensitive", "https://w3c.github.io/webcrypto/#terminate-the-algorithm", @@ -113,7 +111,6 @@ "https://w3c.github.io/webcrypto/#concept-parse-a-jwk", "https://w3c.github.io/webcrypto/#ref-for-dfn-JsonWebKey-1", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-kty-1", - "https://w3c.github.io/webcrypto/#concept-contents-of-arraybuffer", "https://w3c.github.io/webcrypto/#concept-usage-intersection", "https://w3c.github.io/webcrypto/#ref-for-dfn-RecognizedKeyUsage-1", "https://w3c.github.io/webcrypto/#ref-for-dfn-RecognizedKeyUsage-2", @@ -818,7 +815,6 @@ "https://w3c.github.io/webcrypto/#ref-for-supported-operations-1", "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-1", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-1", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaHashedKeyGenParams-1", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKeyPair-4", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaHashedImportParams-1", @@ -889,13 +885,10 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-type-8", "https://w3c.github.io/webcrypto/#ref-for-dom-keytype-private-6", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-6", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-1", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaHashedKeyAlgorithm-hash-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-17", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-type-9", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-7", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-2", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaHashedKeyAlgorithm-hash-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-18", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaKeyGenParams-modulusLength-2", @@ -1012,7 +1005,6 @@ "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-2", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaPssParams-1", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-4", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaPssParams-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaHashedKeyGenParams-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKeyPair-6", @@ -1033,14 +1025,11 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-type-19", "https://w3c.github.io/webcrypto/#ref-for-dom-keytype-private-12", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-12", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-4", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaHashedKeyAlgorithm-hash-7", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-23", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaPssParams-saltLength-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-type-20", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-13", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-5", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-6", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaHashedKeyAlgorithm-hash-8", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-24", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaPssParams-saltLength-3", @@ -1160,9 +1149,7 @@ "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-3", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaOaepParams-1", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-5", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaOaepParams-2", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-6", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaHashedKeyGenParams-4", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKeyPair-8", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaHashedImportParams-4", @@ -1180,18 +1167,14 @@ "https://w3c.github.io/webcrypto/#rsa-oaep-operations", "https://w3c.github.io/webcrypto/#x22-4-operations", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-type-30", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-7", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaOaepParams-label-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaOaepParams-label-3", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-8", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaHashedKeyAlgorithm-hash-13", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-30", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-type-31", "https://w3c.github.io/webcrypto/#ref-for-dom-keytype-private-18", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-9", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaOaepParams-label-4", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaOaepParams-label-5", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-10", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaHashedKeyAlgorithm-hash-14", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-31", "https://w3c.github.io/webcrypto/#ref-for-dfn-RsaKeyGenParams-modulusLength-6", @@ -1309,7 +1292,6 @@ "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-4", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-4", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcdsaParams-1", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-7", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcdsaParams-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyGenParams-1", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKeyPair-10", @@ -1375,8 +1357,8 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-EcdsaParams-hash-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyAlgorithm-namedCurve-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-37", - "https://w3c.github.io/webcrypto/#ref-for-dfn-convert-integer-to-octet-string-1", - "https://w3c.github.io/webcrypto/#ref-for-dfn-convert-integer-to-octet-string-2", + "https://w3c.github.io/webcrypto/#ref-for-dfn-convert-integer-to-byte-sequence-1", + "https://w3c.github.io/webcrypto/#ref-for-dfn-convert-integer-to-byte-sequence-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyAlgorithm-namedCurve-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-38", "https://w3c.github.io/webcrypto/#ref-for-dfn-applicable-specification-16", @@ -1490,7 +1472,6 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-type-50", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyAlgorithm-namedCurve-11", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-47", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-8", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-23", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyAlgorithm-namedCurve-12", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-48", @@ -1548,7 +1529,6 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-type-53", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyAlgorithm-namedCurve-26", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-62", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-9", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-26", "https://w3c.github.io/webcrypto/#ref-for-dfn-ecdh-extended-export-steps-1", "https://w3c.github.io/webcrypto/#ref-for-dfn-applicable-specification-30", @@ -1573,7 +1553,6 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyGenParams-4", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKeyPair-12", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcdhKeyDeriveParams-1", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-10", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyImportParams-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-73", "https://w3c.github.io/webcrypto/#dh-EcdhKeyDeriveParams", @@ -1628,12 +1607,12 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyAlgorithm-namedCurve-31", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-70", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-27", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-11", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyAlgorithm-namedCurve-32", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-71", "https://w3c.github.io/webcrypto/#ref-for-dfn-applicable-specification-33", "https://w3c.github.io/webcrypto/#ref-for-dfn-ecdh-extended-derivation-steps-1", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-containing-1", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-1", + "https://w3c.github.io/webcrypto/#ref-for-dfn-byte-sequence-containing-1", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-spki-15", "https://w3c.github.io/webcrypto/#ref-for-concept-parse-a-spki-5", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-77", @@ -1706,7 +1685,6 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-type-63", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyAlgorithm-namedCurve-37", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-76", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-12", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-29", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyAlgorithm-namedCurve-38", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-77", @@ -1764,7 +1742,6 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-type-66", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcKeyAlgorithm-namedCurve-52", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-91", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-13", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-32", "https://w3c.github.io/webcrypto/#ref-for-dfn-ecdh-extended-export-steps-5", "https://w3c.github.io/webcrypto/#ref-for-dfn-applicable-specification-45", @@ -1780,7 +1757,6 @@ "https://w3c.github.io/webcrypto/#ref-for-supported-operations-6", "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-6", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-6", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-14", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKeyPair-14", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-83", "https://w3c.github.io/webcrypto/#ed25519-operations", @@ -1872,7 +1848,6 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-extractable-27", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-raw-15", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-type-79", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-15", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-35", "https://w3c.github.io/webcrypto/#x25519", "https://w3c.github.io/webcrypto/#x26-x25519", @@ -1885,7 +1860,6 @@ "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-7", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-7", "https://w3c.github.io/webcrypto/#ref-for-dfn-EcdhKeyDeriveParams-3", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-16", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKeyPair-16", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-92", "https://w3c.github.io/webcrypto/#x25519-operations", @@ -1899,7 +1873,7 @@ "https://w3c.github.io/webcrypto/#ref-for-dom-keyalgorithm-name-37", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-100", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-36", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-containing-2", + "https://w3c.github.io/webcrypto/#ref-for-dfn-byte-sequence-containing-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-KeyAlgorithm-12", "https://w3c.github.io/webcrypto/#ref-for-dom-keyalgorithm-name-38", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-93", @@ -1976,7 +1950,6 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-extractable-30", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-raw-17", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-type-92", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-17", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-39", "https://w3c.github.io/webcrypto/#aes-ctr", "https://w3c.github.io/webcrypto/#x27-aes-ctr", @@ -1989,9 +1962,7 @@ "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-8", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-8", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCtrParams-1", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-18", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCtrParams-2", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-19", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesKeyGenParams-1", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-101", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-102", @@ -2044,16 +2015,12 @@ "https://w3c.github.io/webcrypto/#x27-7-operations", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCtrParams-counter-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCtrParams-length-2", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-11", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCtrParams-counter-4", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCtrParams-length-3", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-12", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCtrParams-counter-5", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCtrParams-length-4", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-13", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCtrParams-counter-6", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCtrParams-length-5", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-14", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesKeyGenParams-length-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesKeyGenParams-length-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-103", @@ -2067,14 +2034,16 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-extractable-31", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-usages-31", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-raw-18", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-20", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-2", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-jwk-21", "https://w3c.github.io/webcrypto/#ref-for-dfn-JsonWebKey-22", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-kty-9", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-21", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-k-1", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-3", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-alg-15", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-4", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-alg-16", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-5", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-alg-17", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-use-8", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-key_ops-8", @@ -2111,9 +2080,7 @@ "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-9", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-9", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCbcParams-1", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-22", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCbcParams-2", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-23", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesKeyGenParams-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-105", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-106", @@ -2131,13 +2098,9 @@ "https://w3c.github.io/webcrypto/#aes-cbc-operations", "https://w3c.github.io/webcrypto/#x28-4-operations", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCbcParams-iv-2", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-15", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-16", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCbcParams-iv-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCbcParams-iv-4", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-17", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesCbcParams-iv-5", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-18", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesKeyGenParams-length-5", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesKeyGenParams-length-6", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-107", @@ -2151,14 +2114,16 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-extractable-33", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-usages-33", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-raw-20", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-24", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-6", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-jwk-23", "https://w3c.github.io/webcrypto/#ref-for-dfn-JsonWebKey-24", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-kty-10", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-25", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-k-3", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-7", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-alg-18", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-8", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-alg-19", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-9", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-alg-20", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-use-9", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-key_ops-9", @@ -2195,9 +2160,7 @@ "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-10", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-10", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-1", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-26", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-2", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-27", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesKeyGenParams-4", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-109", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-110", @@ -2225,24 +2188,16 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-tagLength-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-tagLength-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-tagLength-4", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-19", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-additionalData-3", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-20", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-iv-3", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-21", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-22", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-tagLength-5", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-tagLength-6", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-tagLength-7", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-10", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-iv-4", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-additionalData-4", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-23", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-additionalData-5", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-24", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesGcmParams-iv-5", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-25", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-26", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-27", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesKeyGenParams-length-8", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesKeyGenParams-length-9", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-111", @@ -2256,14 +2211,16 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-extractable-35", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-usages-34", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-raw-22", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-28", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-11", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-jwk-25", "https://w3c.github.io/webcrypto/#ref-for-dfn-JsonWebKey-26", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-kty-11", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-29", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-k-5", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-12", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-alg-21", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-13", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-alg-22", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-14", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-alg-23", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-use-10", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-key_ops-10", @@ -2299,8 +2256,6 @@ "https://w3c.github.io/webcrypto/#ref-for-supported-operations-11", "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-11", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-11", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-30", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-31", "https://w3c.github.io/webcrypto/#ref-for-dfn-AesKeyGenParams-5", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-113", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-114", @@ -2320,14 +2275,16 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-extractable-37", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-usages-35", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-raw-24", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-32", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-15", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-jwk-27", "https://w3c.github.io/webcrypto/#ref-for-dfn-JsonWebKey-28", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-kty-12", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-33", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-k-7", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-16", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-alg-24", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-17", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-alg-25", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-18", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-alg-26", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-use-11", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-key_ops-11", @@ -2366,7 +2323,6 @@ "https://w3c.github.io/webcrypto/#ref-for-supported-operations-12", "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-12", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-12", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-34", "https://w3c.github.io/webcrypto/#ref-for-dfn-HmacKeyGenParams-1", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-117", "https://w3c.github.io/webcrypto/#ref-for-dfn-HmacImportParams-1", @@ -2442,12 +2398,10 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-usages-36", "https://w3c.github.io/webcrypto/#ref-for-dfn-KeyAlgorithm-21", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-raw-26", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-35", "https://w3c.github.io/webcrypto/#ref-for-dfn-HmacImportParams-hash-2", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-jwk-29", "https://w3c.github.io/webcrypto/#ref-for-dfn-JsonWebKey-30", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-kty-13", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-36", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-k-9", "https://w3c.github.io/webcrypto/#ref-for-dfn-HmacImportParams-hash-3", "https://w3c.github.io/webcrypto/#ref-for-dom-keyalgorithm-name-53", @@ -2465,6 +2419,7 @@ "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-use-12", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-key_ops-12", "https://w3c.github.io/webcrypto/#ref-for-dom-jsonwebkey-ext-14", + "https://w3c.github.io/webcrypto/#ref-for-dfn-length-in-bits-19", "https://w3c.github.io/webcrypto/#ref-for-dfn-HmacImportParams-length-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-HmacImportParams-length-3", "https://w3c.github.io/webcrypto/#ref-for-dfn-HmacImportParams-length-4", @@ -2479,7 +2434,7 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-algorithm-118", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-54", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-55", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-containing-3", + "https://w3c.github.io/webcrypto/#ref-for-dfn-byte-sequence-containing-3", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-raw-27", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-jwk-30", "https://w3c.github.io/webcrypto/#ref-for-dfn-JsonWebKey-31", @@ -2514,7 +2469,6 @@ "https://w3c.github.io/webcrypto/#ref-for-supported-operations-13", "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-13", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-13", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-37", "https://w3c.github.io/webcrypto/#sha-operations", "https://w3c.github.io/webcrypto/#x32-3-operations", "https://w3c.github.io/webcrypto/#ref-for-dom-algorithm-name-15", @@ -2533,7 +2487,6 @@ "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-14", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-14", "https://w3c.github.io/webcrypto/#ref-for-dfn-HkdfParams-1", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-38", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-121", "https://w3c.github.io/webcrypto/#hkdf-params", "https://w3c.github.io/webcrypto/#x33-3-hkdfparams-dictionary", @@ -2556,9 +2509,7 @@ "https://w3c.github.io/webcrypto/#x33-4-operations", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-56", "https://w3c.github.io/webcrypto/#ref-for-dfn-HkdfParams-hash-2", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-28", "https://w3c.github.io/webcrypto/#ref-for-dfn-HkdfParams-salt-2", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-29", "https://w3c.github.io/webcrypto/#ref-for-dfn-HkdfParams-info-2", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-raw-28", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-122", @@ -2579,7 +2530,6 @@ "https://w3c.github.io/webcrypto/#ref-for-algorithm-specific-params-15", "https://w3c.github.io/webcrypto/#ref-for-algorithm-result-15", "https://w3c.github.io/webcrypto/#ref-for-dfn-Pbkdf2Params-1", - "https://w3c.github.io/webcrypto/#ref-for-dfn-octet-string-39", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-123", "https://w3c.github.io/webcrypto/#pbkdf2-params", "https://w3c.github.io/webcrypto/#x34-3-pbkdf2params-dictionary", @@ -2604,7 +2554,6 @@ "https://w3c.github.io/webcrypto/#ref-for-dfn-Pbkdf2Params-iterations-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-Pbkdf2Params-hash-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-CryptoKey-slot-handle-57", - "https://w3c.github.io/webcrypto/#ref-for-concept-contents-of-arraybuffer-30", "https://w3c.github.io/webcrypto/#ref-for-dfn-Pbkdf2Params-salt-2", "https://w3c.github.io/webcrypto/#ref-for-dfn-Pbkdf2Params-iterations-3", "https://w3c.github.io/webcrypto/#ref-for-dom-keyformat-raw-29", diff --git a/ed/ids/shared-storage.json b/ed/ids/shared-storage.json index 1ccdd5ff8222..6ff7beb816a7 100644 --- a/ed/ids/shared-storage.json +++ b/ed/ids/shared-storage.json @@ -2032,8 +2032,8 @@ "https://wicg.github.io/shared-storage/#ref-for-element-attrdef-img-sharedstoragewritable", "https://wicg.github.io/shared-storage/#ref-for-request-shared-storage-writable", "https://wicg.github.io/shared-storage/#mod-create-nav", - "https://wicg.github.io/shared-storage/#ref-for-create-navigation-params-by-fetchin", - "https://wicg.github.io/shared-storage/#ref-for-create-navigation-params-by-fetchin%E2%91%A0", + "https://wicg.github.io/shared-storage/#ref-for-create-navigation-params-by-fetching", + "https://wicg.github.io/shared-storage/#ref-for-create-navigation-params-by-fetching%E2%91%A0", "https://wicg.github.io/shared-storage/#ref-for-concept-request-request", "https://wicg.github.io/shared-storage/#ref-for-nav-container", "https://wicg.github.io/shared-storage/#ref-for-the-iframe-element%E2%91%A0", @@ -2457,7 +2457,7 @@ "https://wicg.github.io/shared-storage/#762210c0", "https://wicg.github.io/shared-storage/#68675e70", "https://wicg.github.io/shared-storage/#e4ffa115", - "https://wicg.github.io/shared-storage/#faaaa5a1", + "https://wicg.github.io/shared-storage/#07ad3048", "https://wicg.github.io/shared-storage/#12b8dfc0", "https://wicg.github.io/shared-storage/#e10e7eb7", "https://wicg.github.io/shared-storage/#7dbefaad", diff --git a/ed/ids/webrtc.json b/ed/ids/webrtc.json index 1dabdd9abe7e..e48c611e31ea 100644 --- a/ed/ids/webrtc.json +++ b/ed/ids/webrtc.json @@ -1142,10 +1142,12 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiverdirection-sendonly-3", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiverdirection-sendrecv-4", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-list-of-implemented-send-codecs-1", + "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-2", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiver-direction-2", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiverdirection-recvonly-5", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiverdirection-sendrecv-5", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-list-of-implemented-receive-codecs-1", + "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-3", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-media-description-20", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-associated-6", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-sendencodings-14", @@ -1213,10 +1215,12 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiverdirection-sendonly-4", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiverdirection-sendrecv-7", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-list-of-implemented-send-codecs-2", + "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-4", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiver-direction-4", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiverdirection-recvonly-7", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiverdirection-sendrecv-8", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-list-of-implemented-receive-codecs-2", + "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-5", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-media-description-21", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-associated-7", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-sender-30", @@ -2399,7 +2403,7 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpcodingparameters-rid-10", "https://w3c.github.io/webrtc-pc/#codec-validation-1", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpencodingparameters-codec-3", - "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-2", + "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-6", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpsender-19", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpsender-getcapabilities-1", "https://w3c.github.io/webrtc-pc/#codec-validation-2", @@ -2667,7 +2671,7 @@ "https://w3c.github.io/webrtc-pc/#dfn-read-only-parameter", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-lastreturnedparameters-4", "https://w3c.github.io/webrtc-pc/#setparameters-codec-validation-4", - "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-3", + "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-7", "https://w3c.github.io/webrtc-pc/#setparameters-srbd-mv-validation-1", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-transceiver-kind-5", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpencodingparameters-scaleresolutiondownby-11", @@ -2866,6 +2870,11 @@ "https://w3c.github.io/webrtc-pc/#dom-rtcrtpencodingparameters-active", "https://w3c.github.io/webrtc-pc/#rtcrtpparameters-codec", "https://w3c.github.io/webrtc-pc/#dom-rtcrtpencodingparameters-codec", + "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpencodingparameters-codec-5", + "https://w3c.github.io/webrtc-pc/#ref-for-dfn-sendcodecs-5", + "https://w3c.github.io/webrtc-pc/#ref-for-dfn-sendcodecs-6", + "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpencodingparameters-codec-6", + "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-8", "https://w3c.github.io/webrtc-pc/#dom-rtcrtpencodingparameters-maxbitrate", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpencodingparameters-maxbitrate-4", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpencodingparameters-maxbitrate-5", @@ -3371,7 +3380,7 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpsender-51", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpparameters-codecs-6", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpsender-setparameters-15", - "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpencodingparameters-codec-5", + "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpencodingparameters-codec-7", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpreceiver-42", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcpeerconnection-createoffer-26", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcpeerconnection-createanswer-14", @@ -3380,7 +3389,7 @@ "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-52", "https://w3c.github.io/webrtc-pc/#h-note-52", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiver-setcodecpreferences-5", - "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-4", + "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-9", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpsender-52", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpsender-getcapabilities-5", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpreceiver-43", @@ -3390,7 +3399,7 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dfn-user-agent-19", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiver-63", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-preferredcodecs-4", - "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-5", + "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-10", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-transceiver-kind-9", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpsender-53", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpsender-getcapabilities-6", @@ -3398,7 +3407,7 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpreceiver-44", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpreceiver-getcapabilities-5", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpparameters-codecs-8", - "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-6", + "https://w3c.github.io/webrtc-pc/#ref-for-dfn-codec-dictionary-match-11", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiver-direction-9", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-preferredcodecs-5", "https://w3c.github.io/webrtc-pc/#codecmatch-algorithm", @@ -3416,8 +3425,21 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpcodec-sdpfmtpline-6", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpcodec-sdpfmtpline-7", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpcodec-sdpfmtpline-8", + "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpcodec-sdpfmtpline-9", + "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpcodec-sdpfmtpline-10", + "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpcodec-sdpfmtpline-11", + "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpcodec-sdpfmtpline-12", + "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpcodec-sdpfmtpline-13", + "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpcodec-sdpfmtpline-14", "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-53", "https://w3c.github.io/webrtc-pc/#h-note-53", + "https://w3c.github.io/webrtc-pc/#codec-match-without-level-id", + "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpcodec-sdpfmtpline-15", + "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpcodec-sdpfmtpline-16", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-54", + "https://w3c.github.io/webrtc-pc/#h-note-54", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-55", + "https://w3c.github.io/webrtc-pc/#h-note-55", "https://w3c.github.io/webrtc-pc/#simulcast-functionality", "https://w3c.github.io/webrtc-pc/#x5-4-1-simulcast-functionality", "https://w3c.github.io/webrtc-pc/#simulcast-envelope", @@ -3452,8 +3474,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpencodingparameters-active-7", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpsender-setparameters-20", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpencodingparameters-maxbitrate-7", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-54", - "https://w3c.github.io/webrtc-pc/#h-note-54", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-56", + "https://w3c.github.io/webrtc-pc/#h-note-56", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpencodingparameters-maxbitrate-8", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcpeerconnection-createoffer-27", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcpeerconnection-createanswer-15", @@ -3462,8 +3484,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpreceiver-45", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiver-receiver-6", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpreceiver-getparameters-9", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-55", - "https://w3c.github.io/webrtc-pc/#h-note-55", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-57", + "https://w3c.github.io/webrtc-pc/#h-note-57", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpreceiver-46", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpreceiver-47", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpreceiver-48", @@ -3492,8 +3514,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-icetransport-component-1", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiver-64", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiver-65", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-56", - "https://w3c.github.io/webrtc-pc/#h-note-56", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-58", + "https://w3c.github.io/webrtc-pc/#h-note-58", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiver-66", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdtlstransport-23", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdtlstransport-state-1", @@ -3594,8 +3616,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-icetransport-component-2", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiver-67", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiver-68", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-57", - "https://w3c.github.io/webrtc-pc/#h-note-57", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-59", + "https://w3c.github.io/webrtc-pc/#h-note-59", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtptransceiver-69", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcicetransport-27", "https://w3c.github.io/webrtc-pc/#ref-for-dom-icetransport-state-1", @@ -3634,8 +3656,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcpeerconnectioniceevent-5", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-ice-agent-29", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-generation-12", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-58", - "https://w3c.github.io/webrtc-pc/#h-note-58", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-60", + "https://w3c.github.io/webrtc-pc/#h-note-60", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-generation-13", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-generation-14", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-isclosed-28", @@ -3648,8 +3670,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-event-icegatheringstatechange-4", "https://w3c.github.io/webrtc-pc/#ref-for-event-icecandidate-5", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcpeerconnectioniceevent-6", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-59", - "https://w3c.github.io/webrtc-pc/#h-note-59", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-61", + "https://w3c.github.io/webrtc-pc/#h-note-61", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcicetransport-31", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcpeerconnection-122", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-ice-agent-30", @@ -3794,8 +3816,8 @@ "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-getremotecandidates", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcicetransport-45", "https://w3c.github.io/webrtc-pc/#ref-for-dom-peerconnection-addicecandidate-13", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-60", - "https://w3c.github.io/webrtc-pc/#h-note-60", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-62", + "https://w3c.github.io/webrtc-pc/#h-note-62", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcicetransport-getremotecandidates-2", "https://w3c.github.io/webrtc-pc/#ref-for-dom-peerconnection-addicecandidate-14", "https://w3c.github.io/webrtc-pc/#dom-rtcicetransport-getselectedcandidatepair", @@ -3906,8 +3928,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcicetransport-59", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcicetransportstate-checking-4", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcicetransportstate-disconnected-3", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-61", - "https://w3c.github.io/webrtc-pc/#h-note-61", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-63", + "https://w3c.github.io/webrtc-pc/#h-note-63", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcicetransportstate-checking-5", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcicetransportstate-completed-4", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcicetransportstate-connected-3", @@ -4089,8 +4111,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dfn-datachannelid-1", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdatachannelinit-id-1", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-negotiated-2", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-62", - "https://w3c.github.io/webrtc-pc/#h-note-62", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-64", + "https://w3c.github.io/webrtc-pc/#h-note-64", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdatachannelinit-id-2", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-negotiated-3", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-datachannelid-2", @@ -4105,8 +4127,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dfn-datachannelid-5", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-datachannelid-6", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdatachannel-10", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-63", - "https://w3c.github.io/webrtc-pc/#h-note-63", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-65", + "https://w3c.github.io/webrtc-pc/#h-note-65", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-datachannelid-7", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-rtcsctptransport-connected-1", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-sctptransport-9", @@ -4154,8 +4176,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dfn-unable-to-create-an-rtcdatachannel-1", "https://w3c.github.io/webrtc-pc/#ref-for-announce-datachannel-open-1", "https://w3c.github.io/webrtc-pc/#ref-for-event-sctptransport-statechange-1", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-64", - "https://w3c.github.io/webrtc-pc/#h-note-64", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-66", + "https://w3c.github.io/webrtc-pc/#h-note-66", "https://w3c.github.io/webrtc-pc/#ref-for-event-datachannel-open-1", "https://w3c.github.io/webrtc-pc/#ref-for-announce-datachannel-open-2", "https://w3c.github.io/webrtc-pc/#ref-for-event-datachannel-open-2", @@ -4187,8 +4209,8 @@ "https://w3c.github.io/webrtc-pc/#dom-rtcsctptransport-maxchannels", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdatachannel-15", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-maxchannels-4", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-65", - "https://w3c.github.io/webrtc-pc/#h-note-65", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-67", + "https://w3c.github.io/webrtc-pc/#h-note-67", "https://w3c.github.io/webrtc-pc/#ref-for-idl-def-RTCSctpTransportState.connected-2", "https://w3c.github.io/webrtc-pc/#dom-rtcsctptransport-onstatechange", "https://w3c.github.io/webrtc-pc/#ref-for-event-sctptransport-statechange-2", @@ -4299,8 +4321,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dfn-readystate-5", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdatachannelstate-open-2", "https://w3c.github.io/webrtc-pc/#ref-for-event-datachannel-open-4", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-66", - "https://w3c.github.io/webrtc-pc/#h-note-66", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-68", + "https://w3c.github.io/webrtc-pc/#h-note-68", "https://w3c.github.io/webrtc-pc/#ref-for-event-datachannel-2", "https://w3c.github.io/webrtc-pc/#ref-for-event-datachannel-open-5", "https://w3c.github.io/webrtc-pc/#ref-for-event-datachannel-3", @@ -4567,16 +4589,16 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dfn-istransferable-4", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-readystate-20", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdatachannelstate-open-5", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-67", - "https://w3c.github.io/webrtc-pc/#h-note-67", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-69", + "https://w3c.github.io/webrtc-pc/#h-note-69", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-data-transport-25", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-68", - "https://w3c.github.io/webrtc-pc/#h-note-68", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-70", + "https://w3c.github.io/webrtc-pc/#h-note-70", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcsctptransport-maxmessagesize-2", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcsctptransport-14", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-data-transport-26", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-69", - "https://w3c.github.io/webrtc-pc/#h-note-69", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-71", + "https://w3c.github.io/webrtc-pc/#h-note-71", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdatachannel-onerror-2", "https://w3c.github.io/webrtc-pc/#ref-for-dfn-bufferedamount-5", "https://w3c.github.io/webrtc-pc/#webidl-1532613945", @@ -4604,8 +4626,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdatachannel-59", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdatachannel-60", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdatachannel-id-6", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-70", - "https://w3c.github.io/webrtc-pc/#h-note-70", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-72", + "https://w3c.github.io/webrtc-pc/#h-note-72", "https://w3c.github.io/webrtc-pc/#dom-rtcdatachannelinit-id", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdatachannelinit-negotiated-7", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcdatachannelinit-negotiated-8", @@ -4913,8 +4935,8 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcstats-16", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcstats-17", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcstatsreport-12", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-71", - "https://w3c.github.io/webrtc-pc/#h-note-71", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-73", + "https://w3c.github.io/webrtc-pc/#h-note-73", "https://w3c.github.io/webrtc-pc/#the-stats-selection-algorithm", "https://w3c.github.io/webrtc-pc/#x8-5-the-stats-selection-algorithm", "https://w3c.github.io/webrtc-pc/#dfn-stats-selection-algorithm", @@ -4938,16 +4960,16 @@ "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcrtpreceiver-60", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcpeerconnection-143", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcpeerconnection-144", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-72", - "https://w3c.github.io/webrtc-pc/#h-note-72", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-74", + "https://w3c.github.io/webrtc-pc/#h-note-74", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcpeerconnection-145", "https://w3c.github.io/webrtc-pc/#mediastream", "https://w3c.github.io/webrtc-pc/#mediastream-network-use", "https://w3c.github.io/webrtc-pc/#id", "https://w3c.github.io/webrtc-pc/#x9-2-1-id", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcpeerconnection-146", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-73", - "https://w3c.github.io/webrtc-pc/#h-note-73", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-75", + "https://w3c.github.io/webrtc-pc/#h-note-75", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcpeerconnection-147", "https://w3c.github.io/webrtc-pc/#mediastreamtrack", "https://w3c.github.io/webrtc-pc/#mediastreamtrack-network-use", @@ -5036,8 +5058,8 @@ "https://w3c.github.io/webrtc-pc/#x11-1-1-constructors", "https://w3c.github.io/webrtc-pc/#dom-rtcerror-constructor", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcerror-6", - "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-74", - "https://w3c.github.io/webrtc-pc/#h-note-74", + "https://w3c.github.io/webrtc-pc/#issue-container-generatedID-76", + "https://w3c.github.io/webrtc-pc/#h-note-76", "https://w3c.github.io/webrtc-pc/#ref-for-dom-rtcerror-7", "https://w3c.github.io/webrtc-pc/#attributes", "https://w3c.github.io/webrtc-pc/#x11-1-2-attributes", diff --git a/ed/index.json b/ed/index.json index bce068e9fa18..f97a2f57493e 100644 --- a/ed/index.json +++ b/ed/index.json @@ -1,7 +1,7 @@ { "type": "crawl", "title": "Reffy crawl", - "date": "2025-01-09T06:41:38.963Z", + "date": "2025-01-09T12:48:30.553Z", "options": { "fallback": "ed/index.json", "output": "report", @@ -13725,11 +13725,11 @@ ], "crawled": "https://wicg.github.io/shared-storage/", "crawlCacheInfo": { - "lastModified": "Mon, 16 Dec 2024 07:32:26 GMT" + "lastModified": "Thu, 09 Jan 2025 10:49:25 GMT" }, "generator": "bikeshed", - "date": "16 December 2024", - "revision": "d07ef0223ddb7c2b77f6202869304e6933bd3378", + "date": "9 January 2025", + "revision": "d60a66dc0b6660e0c8dedc63f7026eefd60d01eb", "algorithms": "algorithms/shared-storage.json", "links": "links/shared-storage.json", "refs": "refs/shared-storage.json", @@ -15425,9 +15425,9 @@ ], "crawled": "https://www.rfc-editor.org/rfc/rfc7239", "crawlCacheInfo": { - "lastModified": "Wed, 08 Jan 2025 05:51:20 GMT" + "lastModified": "Thu, 09 Jan 2025 06:51:20 GMT" }, - "date": "8 January 2025", + "date": "9 January 2025", "links": "links/rfc7239.json", "ids": "ids/rfc7239.json", "cddl": [] @@ -15767,9 +15767,9 @@ ], "crawled": "https://www.rfc-editor.org/rfc/rfc7932", "crawlCacheInfo": { - "lastModified": "Wed, 01 Jan 2025 13:43:59 GMT" + "lastModified": "Wed, 08 Jan 2025 14:19:02 GMT" }, - "date": "1 January 2025", + "date": "8 January 2025", "links": "links/rfc7932.json", "ids": "ids/rfc7932.json", "cddl": [] @@ -16375,9 +16375,9 @@ ], "crawled": "https://www.rfc-editor.org/rfc/rfc9163", "crawlCacheInfo": { - "lastModified": "Fri, 03 Jan 2025 01:52:38 GMT" + "lastModified": "Thu, 09 Jan 2025 04:36:17 GMT" }, - "date": "3 January 2025", + "date": "9 January 2025", "algorithms": "algorithms/rfc9163.json", "links": "links/rfc9163.json", "refs": "refs/rfc9163.json", @@ -36943,11 +36943,11 @@ ], "crawled": "https://w3c.github.io/webcrypto/", "crawlCacheInfo": { - "lastModified": "Tue, 07 Jan 2025 18:25:28 GMT" + "lastModified": "Thu, 09 Jan 2025 09:11:42 GMT" }, "generator": "respec", - "date": "07 January 2025", - "revision": "1a2a4310090d2ca2bde8e42b857dfa1ee5b6b3ad", + "date": "09 January 2025", + "revision": "efe2685dcd70231f0fbe8e1ad6fa01475168add1", "algorithms": "algorithms/WebCryptoAPI.json", "links": "links/WebCryptoAPI.json", "refs": "refs/WebCryptoAPI.json", @@ -37656,10 +37656,10 @@ ], "crawled": "https://w3c.github.io/webrtc-pc/", "crawlCacheInfo": { - "lastModified": "Mon, 06 Jan 2025 07:22:44 GMT" + "lastModified": "Thu, 09 Jan 2025 11:08:52 GMT" }, "generator": "respec", - "date": "06 January 2025", + "date": "09 January 2025", "algorithms": "algorithms/webrtc.json", "links": "links/webrtc.json", "refs": "refs/webrtc.json", diff --git a/ed/links/WebCryptoAPI.json b/ed/links/WebCryptoAPI.json index e507b2e55c98..8eab6eb4bc47 100644 --- a/ed/links/WebCryptoAPI.json +++ b/ed/links/WebCryptoAPI.json @@ -109,6 +109,7 @@ "https://infra.spec.whatwg.org/": { "anchors": [ "byte-sequence", + "byte-sequence-length", "string-concatenate", "ascii-lower-hex-digit" ] @@ -123,7 +124,6 @@ "BufferSource", "dfn-throw", "dataerror", - "dfn-get-buffer-source-copy", "SameObject", "Exposed", "SecureContext", @@ -137,11 +137,14 @@ "idl-BigInt64Array", "idl-BigUint64Array", "typemismatcherror", + "buffersource-byte-length", "quotaexceedederror", + "arraybufferview-write", "idl-object", "idl-boolean", "idl-sequence", "idl-unsigned-long", + "dfn-get-buffer-source-copy", "this", "invalidaccesserror", "arraybuffer-create", diff --git a/ed/links/shared-storage.json b/ed/links/shared-storage.json index da9d3af0d5c8..3aeeaaecb9ab 100644 --- a/ed/links/shared-storage.json +++ b/ed/links/shared-storage.json @@ -127,7 +127,7 @@ "https://html.spec.whatwg.org/multipage/browsing-the-web.html": { "anchors": [ "navigate", - "create-navigation-params-by-fetchin" + "create-navigation-params-by-fetching" ] }, "https://html.spec.whatwg.org/multipage/common-dom-interfaces.html": { diff --git a/ed/links/webrtc.json b/ed/links/webrtc.json index 8bea58fca37d..77508554229d 100644 --- a/ed/links/webrtc.json +++ b/ed/links/webrtc.json @@ -74,6 +74,7 @@ "https://github.com/w3c/webrtc-pc/pull/2998": {}, "https://github.com/w3c/webrtc-pc/pull/3005": {}, "https://github.com/w3c/webrtc-pc/pull/3018": {}, + "https://github.com/w3c/webrtc-pc/pull/3023": {}, "https://github.com/web-platform-tests/wpt/pull/21025": {}, "https://github.com/web-platform-tests/wpt/pull/34912": {}, "https://github.com/web-platform-tests/wpt/pull/35703": {}, @@ -100,6 +101,7 @@ "https://github.com/web-platform-tests/wpt/pull/47959": {}, "https://github.com/web-platform-tests/wpt/pull/48361": {}, "https://github.com/web-platform-tests/wpt/pull/49421": {}, + "https://github.com/web-platform-tests/wpt/pull/49990": {}, "https://github.com/web-platform-tests/wpt/tree/master/webrtc": {}, "https://github.com/web-platform-tests/wpt/tree/master/webrtc/RTCCertificate-postMessage.html": {}, "https://github.com/web-platform-tests/wpt/tree/master/webrtc/RTCCertificate.html": {}, diff --git a/ed/refs/WebCryptoAPI.json b/ed/refs/WebCryptoAPI.json index 5c67c5c2e8e6..e8a536aea805 100644 --- a/ed/refs/WebCryptoAPI.json +++ b/ed/refs/WebCryptoAPI.json @@ -30,7 +30,7 @@ "url": "https://html.spec.whatwg.org/multipage/" }, { - "name": "infra", + "name": "Infra", "url": "https://infra.spec.whatwg.org/" }, {