blob: 1ca9448c96b68265ec2a3b3914a62dbc44382064 [file] [log] [blame]
Tests algorithm normalization.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
PASS algorithm.name is 'SHA-1'
PASS algorithm.name is 'SHA-256'
PASS normalizeDigest({}) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeDigest({name: null}) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeDigest({name: -1}) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeDigest({name: ''}) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeDigest({name: 'nosuchalgorithm'}) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeDigest({name: '\u0189'}) threw exception SyntaxError: An invalid or illegal string was specified..
PASS normalizeDigest(null) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeDigest(0) threw exception TypeError: Not an object..
PASS normalizeDigest(undefined) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeDigest('') threw exception TypeError: Not an object..
PASS algorithm.noSuchParam is undefined.
PASS algorithm.name is 'AES-CBC'
PASS algorithm.iv.length is 16
PASS algorithm.iv[3] is 3
PASS algorithm.iv[3] is 3
PASS normalizeEncrypt(rawAlgorithm, aesCbcKey) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS algorithm.name is 'SHA-384'
PASS algorithm.name is 'SHA-384'
PASS algorithm.name is 'AES-CBC'
PASS algorithm.iv.length is 16
PASS algorithm.iv[1] is 1
PASS algorithm.name is 'AES-CBC'
PASS algorithm.iv.length is 16
PASS algorithm.iv[1] is 1
PASS normalizeEncrypt({ name: 'SHA-1' }, aesCbcKey) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeDigest({ name: 'AES-CBC', iv: originalIv }) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeSign({name: 'hmac'}, hmacSha1Key) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeSign({name: 'hmac', hash: 'foo'}, hmacSha1Key) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeSign({name: 'hmac', hash: { name: 'AES-CBC', iv: originalIv }}, hmacSha1Key) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS algorithm.name is 'HMAC'
PASS algorithm.hash.name is 'SHA-1'
PASS normalizeEncrypt(validHmacSha1, hmacSha1Key) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeSign({name: 'RSASSA-PKCS1-v1_5'}, rsaSsaKey) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeSign({name: 'RSASSA-PKCS1-v1_5', hash: 'foo'}, rsaSsaKey) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS normalizeSign({name: 'RSASSA-PKCS1-v1_5', hash: { name: 'AES-CBC', iv: originalIv }}, rsaSsaKey) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS algorithm.name is 'RSASSA-PKCS1-v1_5'
PASS algorithm.hash.name is 'SHA-256'
PASS normalizeEncrypt(validRsaSsa, rsaSsaKey) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS crypto.subtle.encrypt(algorithmIdentifier, aesCbcKeyNoEncrypt) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS crypto.subtle.encrypt(algorithmIdentifier, hmacSha1Key) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS crypto.subtle.sign(algorithmIdentifier, hmacSha1Key) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
PASS successfullyParsed is true
TEST COMPLETE