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

Unified Diff: content/test/data/webcrypto/ecdh.json

Issue 780923003: Fix a WebCrypto error type: InvalidAccessError --> OperationError. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@derive_key
Patch Set: Created 6 years 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 | « content/child/webcrypto/status.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/webcrypto/ecdh.json
diff --git a/content/test/data/webcrypto/ecdh.json b/content/test/data/webcrypto/ecdh.json
index 10ff5c62bc273096f039a081b4f69bb116172edf..fbe2a0985dfc06f7c94ec1ecd72e61617f861ef8 100644
--- a/content/test/data/webcrypto/ecdh.json
+++ b/content/test/data/webcrypto/ecdh.json
@@ -275,7 +275,7 @@
},
"length_bits": 257,
- "error": "InvalidAccess: Length specified for ECDH key derivation is too large. Maximum allowed is 256 bits"
+ "error": "OperationError: Length specified for ECDH key derivation is too large. Maximum allowed is 256 bits"
},
// The length is too long, by 1 byte
@@ -295,7 +295,7 @@
},
"length_bits": 264,
- "error": "InvalidAccess: Length specified for ECDH key derivation is too large. Maximum allowed is 256 bits"
+ "error": "OperationError: Length specified for ECDH key derivation is too large. Maximum allowed is 256 bits"
},
// The public key parameter is in fact a private key
@@ -359,7 +359,7 @@
},
"length_bits": 529,
- "error": "InvalidAccess: Length specified for ECDH key derivation is too large. Maximum allowed is 528 bits"
+ "error": "OperationError: Length specified for ECDH key derivation is too large. Maximum allowed is 528 bits"
}
]
« no previous file with comments | « content/child/webcrypto/status.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698