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

Unified Diff: content/child/webcrypto/openssl/pbkdf2_openssl.cc

Issue 797723006: Implement PBKDF2 (except for generateKey) using BoringSSL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pbkdf2
Patch Set: Use PKCS5_PBKDF2_HMAC() from BoringSSL 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/openssl/pbkdf2_openssl.cc
diff --git a/content/child/webcrypto/openssl/pbkdf2_openssl.cc b/content/child/webcrypto/openssl/pbkdf2_openssl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..040a22c87876e14ad309fcc1c8f81539c30184e9
--- /dev/null
+++ b/content/child/webcrypto/openssl/pbkdf2_openssl.cc
@@ -0,0 +1,109 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/logging.h"
+#include "base/numerics/safe_math.h"
+#include "base/stl_util.h"
+#include "content/child/webcrypto/algorithm_implementation.h"
+#include "content/child/webcrypto/crypto_data.h"
+#include "content/child/webcrypto/jwk.h"
+#include "content/child/webcrypto/openssl/key_openssl.h"
+#include "content/child/webcrypto/openssl/util_openssl.h"
+#include "content/child/webcrypto/status.h"
+#include "content/child/webcrypto/webcrypto_util.h"
+#include "crypto/openssl_util.h"
+#include "crypto/secure_util.h"
+#include "third_party/WebKit/public/platform/WebCryptoAlgorithmParams.h"
+#include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h"
+
+namespace content {
+
+namespace webcrypto {
+
+namespace {
+
+const blink::WebCryptoKeyUsageMask kAllKeyUsages =
+ blink::WebCryptoKeyUsageDeriveKey | blink::WebCryptoKeyUsageDeriveBits;
+class Pbkdf2Implementation : public AlgorithmImplementation {
eroman 2015/01/09 02:26:21 style: Add a newline before class definition
xun.sun 2015/01/09 16:08:41 Done.
+ public:
+ Pbkdf2Implementation() {}
+
+ Status GenerateKey(const blink::WebCryptoAlgorithm& algorithm,
+ bool extractable,
+ blink::WebCryptoKeyUsageMask usages,
+ GenerateKeyResult* result) const override {
+ return Status::ErrorUnsupported();
+ }
+
+ Status VerifyKeyUsagesBeforeImportKey(
+ blink::WebCryptoKeyFormat format,
+ blink::WebCryptoKeyUsageMask usages) const override {
+ switch (format) {
+ case blink::WebCryptoKeyFormatRaw:
+ return CheckKeyCreationUsages(kAllKeyUsages, usages, false);
+ default:
+ return Status::ErrorUnsupportedImportKeyFormat();
+ }
+ }
+
+ Status ImportKeyRaw(const CryptoData& key_data,
+ const blink::WebCryptoAlgorithm& algorithm,
+ bool extractable,
+ blink::WebCryptoKeyUsageMask usages,
+ blink::WebCryptoKey* key) const override {
+ const blink::WebCryptoKeyAlgorithm key_algorithm =
+ blink::WebCryptoKeyAlgorithm::createPbkdf2(algorithm.id());
+
+ return CreateWebCryptoSecretKey(key_data, key_algorithm, extractable,
+ usages, key);
+ }
+
+ Status DeriveBits(const blink::WebCryptoAlgorithm& algorithm,
+ const blink::WebCryptoKey& base_key,
+ bool has_optional_length_bits,
+ unsigned int optional_length_bits,
+ std::vector<uint8_t>* derived_bytes) const override {
+ if (!has_optional_length_bits || optional_length_bits % 8)
+ return Status::ErrorPbkdf2InvalidLength();
+
+ const blink::WebCryptoPbkdf2Params* params = algorithm.pbkdf2Params();
+ const blink::WebVector<unsigned char>& salt = params->salt();
+ const unsigned long iterations = params->iterations();
eroman 2015/01/09 02:26:21 This should be an unsigned int, will comment on bl
xun.sun 2015/01/09 16:08:41 Done.
+ const blink::WebCryptoAlgorithm& hash = params->hash();
+
+ const EVP_MD* digest_algorithm = GetDigest(hash.id());
+ if (!digest_algorithm)
+ return Status::ErrorUnsupported();
+
+ unsigned int dkLen = optional_length_bits / 8;
eroman 2015/01/09 02:26:21 (1) dkLen is not chromium style naming. (20 dk_len
xun.sun 2015/01/09 16:08:41 Done.
+ unsigned int hLen = EVP_MD_size(digest_algorithm);
eroman 2015/01/09 02:26:21 style naming throughout here.
xun.sun 2015/01/09 16:08:41 Done.
+
+ unsigned long maxLength = ((1L << 32) - 1) * hLen;
eroman 2015/01/09 02:26:21 This doesn't make sense, what is it trying to enfo
xun.sun 2015/01/09 16:08:41 Section 5.2 in https://www.ietf.org/rfc/rfc2898.tx
+ if (dkLen > maxLength)
+ return Status::OperationError();
+
+ derived_bytes->resize(dkLen);
+
+ const std::vector<uint8_t>& password =
+ SymKeyOpenSsl::Cast(base_key)->raw_key_data();
+
+ int result = PKCS5_PBKDF2_HMAC(
+ (const char*)password.data(), password.size(), salt.data(), salt.size(),
eroman 2015/01/09 02:26:21 (1) use C++ style casts, like static_cast<const ch
xun.sun 2015/01/09 16:08:41 Done.
+ iterations, digest_algorithm, dkLen, derived_bytes->data());
+ if (result == 1)
+ return Status::Success();
+ else
eroman 2015/01/09 02:26:21 nit: we omit "else" clauses when the "if" above re
xun.sun 2015/01/09 16:08:41 Done.
+ return Status::OperationError();
+ }
eroman 2015/01/09 02:26:21 The Serialize methods are needed here as well, sin
xun.sun 2015/01/09 16:08:41 Done.
+};
+
+} // namespace
+
+AlgorithmImplementation* CreatePlatformPbkdf2Implementation() {
+ return new Pbkdf2Implementation;
+}
+
+} // namespace webcrypto
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698