| <script src="../../resources/js-test-pre.js"></script> |
| <script src="../resources/common.js"></script> |
| description("Test encrypting using AES-GCM with an imported 128bit key and additional data"); |
| var plainText = asciiToUint8Array("Hello, World!"); |
| iv: asciiToUint8Array("jnOw99oOZFLIEPMr"), |
| additionalData: asciiToUint8Array("jnOw99oOZFLIEPMr"), |
| var rawKey = asciiToUint8Array("jnOw99oOZFLIEPMr"); |
| var expectedCipherText = "f9ba1161a16c9fcc726a4531c110d8e4f966a8cb8291e0c378f99b846d"; |
| crypto.subtle.importKey("raw", rawKey, "aes-gcm", extractable, ["encrypt"]).then(function(key) { |
| return crypto.subtle.encrypt(aesGcmParams, key, plainText); |
| }).then(function(result) { |
| shouldBe("bytesToHexString(cipherText)", "expectedCipherText"); |
| <script src="../../resources/js-test-post.js"></script> |