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

Unified Diff: content/renderer/webcrypto/webcrypto_util.cc

Issue 118623002: [webcrypto] Add raw symmetric key AES-KW wrap/unwrap for NSS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 10 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
Index: content/renderer/webcrypto/webcrypto_util.cc
diff --git a/content/renderer/webcrypto/webcrypto_util.cc b/content/renderer/webcrypto/webcrypto_util.cc
index 3124afa7dfdf2594f575ba43149d29a155896d17..0046e8f116255bc8bdadae8968772fabe9036eac 100644
--- a/content/renderer/webcrypto/webcrypto_util.cc
+++ b/content/renderer/webcrypto/webcrypto_util.cc
@@ -115,6 +115,10 @@ Status Status::ErrorDataTooLarge() {
return Status("The provided data is too large");
}
+Status Status::ErrorDataTooSmall() {
+ return Status("The provided data is too small");
+}
+
Status Status::ErrorUnsupported() {
return Status("The requested operation is unsupported");
}
@@ -128,6 +132,10 @@ Status Status::ErrorInvalidAesGcmTagLength() {
"of 8 bits");
}
+Status Status::ErrorInvalidAesKwDataLength() {
+ return Status("The data length is invalid: not a multiple of 8 bytes");
eroman 2014/02/26 23:40:22 I suggest adding AES-KW somewhere in there (The w
padolph 2014/02/28 23:28:40 Done.
+}
+
Status Status::ErrorGenerateKeyPublicExponent() {
return Status("The \"publicExponent\" is either empty, zero, or too large");
}

Powered by Google App Engine
This is Rietveld 408576698