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

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

Issue 797723006: Implement PBKDF2 (except for generateKey) using BoringSSL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pbkdf2
Patch Set: Rebased 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
Index: content/child/webcrypto/status.cc
diff --git a/content/child/webcrypto/status.cc b/content/child/webcrypto/status.cc
index ff69b31212b3351ba6258c96c578c2f34df252d3..861d27b3514db351118e644fe7b11081cd48eae3 100644
--- a/content/child/webcrypto/status.cc
+++ b/content/child/webcrypto/status.cc
@@ -341,6 +341,18 @@ Status Status::ErrorHkdfDeriveBitsLengthNotSpecified() {
"No length was specified for the HKDF Derive Bits operation.");
}
+Status Status::ErrorPbkdf2InvalidLength() {
+ return Status(
+ blink::WebCryptoErrorTypeOperation,
+ "Length for PBKDF2 key derivation must be a multiple of 8 bits.");
+}
+
+Status Status::ErrorPbkdf2DeriveBitsLengthNotSpecified() {
+ return Status(
+ blink::WebCryptoErrorTypeOperation,
+ "No length was specified for the PBKDF2 Derive Bits operation.");
+}
+
Status::Status(blink::WebCryptoErrorType error_type,
const std::string& error_details_utf8)
: type_(TYPE_ERROR),

Powered by Google App Engine
This is Rietveld 408576698