Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(266)

Unified Diff: LayoutTests/crypto/exportKey-unextractable.html

Issue 214233002: [webcrypto] Split exportKey.html test into smaller files. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/crypto/exportKey-expected.txt ('k') | LayoutTests/crypto/exportKey-unextractable-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/crypto/exportKey-unextractable.html
diff --git a/LayoutTests/crypto/exportKey-unextractable.html b/LayoutTests/crypto/exportKey-unextractable.html
new file mode 100644
index 0000000000000000000000000000000000000000..5992088ac90707acbe8dfd47c7902901c60aa7c3
--- /dev/null
+++ b/LayoutTests/crypto/exportKey-unextractable.html
@@ -0,0 +1,74 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script src="../resources/js-test.js"></script>
+<script src="resources/common.js"></script>
+<script src="resources/keys.js"></script>
+</head>
+<body>
+<p id="description"></p>
+<div id="console"></div>
+
+<script>
+description("Tests that an unextractable key cannot be exported.");
+
+jsTestIsAsync = true;
+
+// FIXME: Should also test unextractable keys created from generateKey().
+
+function importUnextractableAesKey()
+{
+ var keyData = new Uint8Array(16);
+ var usages = ['encrypt'];
+ var extractable = false;
+ var algorithm = {name: 'aes-cbc'};
+
+ return crypto.subtle.importKey('raw', keyData, algorithm, extractable, usages);
+}
+
+function importUnextractableHmacKey()
+{
+ var keyData = new Uint8Array(16);
+ var usages = ['sign'];
+ var extractable = false;
+ var algorithm = {name: 'HMAC', hash: {name: 'sha-1'}};
+
+ return crypto.subtle.importKey('raw', keyData, algorithm, extractable, usages);
+}
+
+function importUnextractableRsaPrivateKey()
+{
+ var keyData = hexStringToUint8Array(kKeyData.rsa1.pkcs8);
+ var usages = ['encrypt'];
+ var extractable = false;
+ var algorithm = {name: 'RSAES-PKCS1-v1_5'};
+
+ return crypto.subtle.importKey('pkcs8', keyData, algorithm, extractable, usages);
+}
+
+importUnextractableAesKey().then(function(key) {
+ return crypto.subtle.exportKey('raw', key);
+}).then(failAndFinishJSTest, function(result) {
+ error = result;
+ shouldBeNull("error");
+
+ return importUnextractableHmacKey();
+}).then(function(key) {
+ return crypto.subtle.exportKey('raw', key);
+}).then(failAndFinishJSTest, function(result) {
+ error = result;
+ shouldBeNull("error");
+
+ return importUnextractableRsaPrivateKey();
+}).then(function(key) {
+ return crypto.subtle.exportKey('pkcs8', key);
+}).then(failAndFinishJSTest, function(result) {
+ error = result;
+
+ shouldBeNull("error");
+}).then(finishJSTest, failAndFinishJSTest);
+
+</script>
+
+</body>
+</html>
« no previous file with comments | « LayoutTests/crypto/exportKey-expected.txt ('k') | LayoutTests/crypto/exportKey-unextractable-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698