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

Unified Diff: content/child/webcrypto/status.cc

Issue 803173010: Implement HKDF for webcrypto (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add curlies and OpenSSLErrStackTracer Created 5 years, 11 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 | « content/child/webcrypto/status.h ('k') | content/content_child.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/webcrypto/status.cc
diff --git a/content/child/webcrypto/status.cc b/content/child/webcrypto/status.cc
index abadf001eabe73128b3da19c0ce066462ea39e28..ff69b31212b3351ba6258c96c578c2f34df252d3 100644
--- a/content/child/webcrypto/status.cc
+++ b/content/child/webcrypto/status.cc
@@ -328,6 +328,19 @@ Status Status::ErrorEcdhLengthTooBig(unsigned int max_length_bits) {
max_length_bits));
}
+Status Status::ErrorHkdfLengthTooLong() {
+ return Status(blink::WebCryptoErrorTypeOperation,
+ "The length provided for HKDF is too large.");
+}
+
+Status Status::ErrorHkdfDeriveBitsLengthNotSpecified() {
+ // TODO(nharper): The spec might change so that an OperationError should be
+ // thrown here instead of a TypeError.
+ // (https://www.w3.org/Bugs/Public/show_bug.cgi?id=27771)
+ return Status(blink::WebCryptoErrorTypeType,
+ "No length was specified for the HKDF Derive Bits operation.");
+}
+
Status::Status(blink::WebCryptoErrorType error_type,
const std::string& error_details_utf8)
: type_(TYPE_ERROR),
« no previous file with comments | « content/child/webcrypto/status.h ('k') | content/content_child.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698