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

Unified Diff: chrome/renderer/extensions/enterprise_platform_keys_natives.cc

Issue 298073009: Reuse WebCrypto's normalizeCryptoAlgorithm in enterprise.platformKeys. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 years, 6 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: chrome/renderer/extensions/enterprise_platform_keys_natives.cc
diff --git a/chrome/renderer/extensions/enterprise_platform_keys_natives.cc b/chrome/renderer/extensions/enterprise_platform_keys_natives.cc
new file mode 100644
index 0000000000000000000000000000000000000000..dd3977391b5852ca913b4f648b82a8fb4340fc80
--- /dev/null
+++ b/chrome/renderer/extensions/enterprise_platform_keys_natives.cc
@@ -0,0 +1,131 @@
+// Copyright 2014 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 "chrome/renderer/extensions/enterprise_platform_keys_natives.h"
+
+#include <string>
+
+#include "base/values.h"
+#include "chrome/renderer/extensions/chrome_v8_context.h"
+#include "content/public/renderer/v8_value_converter.h"
+#include "third_party/WebKit/public/platform/WebCryptoAlgorithm.h"
+#include "third_party/WebKit/public/platform/WebCryptoAlgorithmParams.h"
+#include "third_party/WebKit/public/platform/WebString.h"
+#include "third_party/WebKit/public/web/WebCryptoNormalize.h"
+
+namespace extensions {
+
+namespace {
+
+std::string AlgorithmIdToName(blink::WebCryptoAlgorithmId id) {
eroman 2014/06/05 23:38:28 This is a duplication of algorithmIdToName(blink::
pneubeck (no reviews) 2014/06/06 12:39:45 Done.
+ switch (id) {
+ case blink::WebCryptoAlgorithmIdHmac:
+ return "HMAC";
+ case blink::WebCryptoAlgorithmIdSha1:
+ return "SHA-1";
+ case blink::WebCryptoAlgorithmIdAesKw:
+ return "AES-KW";
+ case blink::WebCryptoAlgorithmIdSha512:
+ return "SHA-512";
+ case blink::WebCryptoAlgorithmIdSha384:
+ return "SHA-384";
+ case blink::WebCryptoAlgorithmIdSha256:
+ return "SHA-256";
+ case blink::WebCryptoAlgorithmIdAesCbc:
+ return "AES-CBC";
+ case blink::WebCryptoAlgorithmIdAesGcm:
+ return "AES-GCM";
+ case blink::WebCryptoAlgorithmIdAesCtr:
+ return "AES-CTR";
+ case blink::WebCryptoAlgorithmIdRsaOaep:
+ return "RSA-OAEP";
+ case blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5:
+ return "RSASSA-PKCS1-V1_5";
eroman 2014/06/05 23:38:28 Note that the canonicalized name used by the spec
pneubeck (no reviews) 2014/06/06 12:39:45 Done.
+ }
+ NOTREACHED();
+ return "";
+}
+
+bool StringToWebCryptoOperation(const std::string& str,
+ blink::WebCryptoOperation* op) {
+ if (str == "GenerateKey") {
+ *op = blink::WebCryptoOperationGenerateKey;
+ return true;
+ }
+ if (str == "Sign") {
+ *op = blink::WebCryptoOperationSign;
+ return true;
+ }
+ if (str == "Verify") {
+ *op = blink::WebCryptoOperationVerify;
+ return true;
+ }
+ return false;
+}
+
+scoped_ptr<base::DictionaryValue> WebCryptoAlgorithmToBaseValue(
+ const blink::WebCryptoAlgorithm& algorithm) {
+ DCHECK(!algorithm.isNull());
+
+ scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue);
+ dict->SetStringWithoutPathExpansion("name",
+ AlgorithmIdToName(algorithm.id()));
+ const blink::WebCryptoRsaHashedKeyGenParams* rsaHashedKeyGen =
+ algorithm.rsaHashedKeyGenParams();
+ if (rsaHashedKeyGen) {
+ dict->SetIntegerWithoutPathExpansion("modulusLength",
+ rsaHashedKeyGen->modulusLengthBits());
eroman 2014/06/05 23:38:27 What about the hash property? I am not sure I und
pneubeck (no reviews) 2014/06/06 12:39:45 Like pulic exponent, I'd put that into a follow up
+ return dict.Pass();
+ }
+ // Otherwise, |algorithm| is missing support here or no parameters were
+ // required.
+ return dict.Pass();
+}
+
+} // namespace
+
+EnterprisePlatformKeysNatives::EnterprisePlatformKeysNatives(
+ ScriptContext* context)
+ : ObjectBackedNativeHandler(context) {
+ RouteFunction("NormalizeAlgorithm",
+ base::Bind(&EnterprisePlatformKeysNatives::NormalizeAlgorithm,
+ base::Unretained(this)));
+}
+
+void EnterprisePlatformKeysNatives::NormalizeAlgorithm(
+ const v8::FunctionCallbackInfo<v8::Value>& call_info) {
+ DCHECK_EQ(call_info.Length(), 2);
+ DCHECK(call_info[0]->IsObject());
+ DCHECK(call_info[1]->IsString());
+
+ blink::WebCryptoOperation operation;
+ if (!StringToWebCryptoOperation(*v8::String::Utf8Value(call_info[1]),
+ &operation)) {
+ return;
+ }
+
+ blink::WebString error_details;
eroman 2014/06/05 23:38:27 The exception information is being disregarded, is
pneubeck (no reviews) 2014/06/06 12:39:45 I wanted to do another pass to fix error handling
+ int exception_code = 0;
+
+ blink::WebCryptoAlgorithm algorithm =
+ blink::normalizeCryptoAlgorithm(call_info[0]->ToObject(),
+ operation,
+ &exception_code,
+ &error_details,
+ call_info.GetIsolate());
+
+ scoped_ptr<base::DictionaryValue> algorithm_dict;
+ if (!algorithm.isNull())
+ algorithm_dict = WebCryptoAlgorithmToBaseValue(algorithm);
+
+ if (!algorithm_dict)
+ return;
+
+ scoped_ptr<content::V8ValueConverter> converter(
+ content::V8ValueConverter::create());
+ call_info.GetReturnValue().Set(
+ converter->ToV8Value(algorithm_dict.get(), context()->v8_context()));
+}
+
+} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698