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

Unified Diff: chrome/browser/extensions/api/platform_keys/platform_keys_api.cc

Issue 884073002: Implement chrome.platformKeys.getKeyPair(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cert_impl2
Patch Set: Bundled Sign() arguments into a struct. Renamed to SignRSA. Created 5 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: chrome/browser/extensions/api/platform_keys/platform_keys_api.cc
diff --git a/chrome/browser/extensions/api/platform_keys/platform_keys_api.cc b/chrome/browser/extensions/api/platform_keys/platform_keys_api.cc
index 9a4e2d29a5b39b1a1640573e98e742d965f4d367..17b5f8389364b1c5b7b2dc1e09a4a48ae52a4230 100644
--- a/chrome/browser/extensions/api/platform_keys/platform_keys_api.cc
+++ b/chrome/browser/extensions/api/platform_keys/platform_keys_api.cc
@@ -8,6 +8,7 @@
#include "base/bind.h"
#include "base/logging.h"
+#include "base/values.h"
#include "chrome/browser/chromeos/platform_keys/platform_keys.h"
#include "chrome/browser/chromeos/platform_keys/platform_keys_service.h"
#include "chrome/browser/chromeos/platform_keys/platform_keys_service_factory.h"
@@ -20,10 +21,37 @@ namespace extensions {
namespace api_pk = api::platform_keys;
namespace api_pki = api::platform_keys_internal;
+namespace {
+
+const char kErrorAlgorithmNotSupported[] = "Algorithm not supported.";
+const char kErrorInvalidX509Cert[] =
+ "Certificate is not a valid X.509 certificate.";
+
+// Builds a partial WebCrypto Algorithm object from the parameters available in
+// |key_info|, which must the info of a RSA key. This doesn't include sign/hash
+// parameters and thus isn't complete.
+// The default public exponent 65537 is assumed.
Ryan Sleevi 2015/02/07 02:09:41 This comment needs updating, doesn't it? You no lo
pneubeck (no reviews) 2015/02/08 10:52:00 Maybe my english understanding is flawed here. Pro
+void BuildWebCryptoRSAAlgorithmDictionary(
+ const chromeos::platform_keys::SubjectPublicKeyInfo& key_info,
+ base::DictionaryValue* algorithm) {
+ CHECK_EQ(net::X509Certificate::kPublicKeyTypeRSA, key_info.key_type);
+ algorithm->SetStringWithoutPathExpansion("name", "RSASSA-PKCS1-v1_5");
+ algorithm->SetIntegerWithoutPathExpansion("modulusLength",
+ key_info.key_size_bits);
+
+ // Equals 65537.
+ const char defaultPublicExponent[] = {0x01, 0x00, 0x01};
+ algorithm->SetWithoutPathExpansion(
+ "publicExponent",
+ base::BinaryValue::CreateWithCopiedBuffer(
+ defaultPublicExponent, arraysize(defaultPublicExponent)));
+}
+
+} // namespace
+
namespace platform_keys {
const char kErrorInvalidToken[] = "The token is not valid.";
-const char kErrorAlgorithmNotSupported[] = "Algorithm not supported.";
const char kTokenIdUser[] = "user";
const char kTokenIdSystem[] = "system";
@@ -54,6 +82,38 @@ std::string PlatformKeysTokenIdToApiId(
} // namespace platform_keys
+PlatformKeysInternalGetPublicKeyFunction::
+ ~PlatformKeysInternalGetPublicKeyFunction() {
+}
+
+ExtensionFunction::ResponseAction
+PlatformKeysInternalGetPublicKeyFunction::Run() {
+ scoped_ptr<api_pki::GetPublicKey::Params> params(
+ api_pki::GetPublicKey::Params::Create(*args_));
+ EXTENSION_FUNCTION_VALIDATE(params);
+
+ const std::vector<char>& cert_der = params->certificate;
+ scoped_refptr<net::X509Certificate> cert_x509 =
+ net::X509Certificate::CreateFromBytes(vector_as_array(&cert_der),
+ cert_der.size());
+ if (!cert_x509)
+ return RespondNow(Error(kErrorInvalidX509Cert));
+
+ chromeos::platform_keys::SubjectPublicKeyInfo info;
+ if (!chromeos::platform_keys::GetPublicKey(cert_x509, &info) ||
+ info.key_type != net::X509Certificate::kPublicKeyTypeRSA) {
+ return RespondNow(Error(kErrorAlgorithmNotSupported));
+ }
+
+ api_pki::GetPublicKey::Results::Algorithm algorithm;
+ BuildWebCryptoRSAAlgorithmDictionary(info, &algorithm.additional_properties);
+
+ return RespondNow(ArgumentList(api_pki::GetPublicKey::Results::Create(
+ std::vector<char>(info.public_key_spki_der.begin(),
+ info.public_key_spki_der.end()),
+ algorithm)));
+}
+
PlatformKeysInternalSelectClientCertificatesFunction::
~PlatformKeysInternalSelectClientCertificatesFunction() {
}
@@ -95,12 +155,25 @@ void PlatformKeysInternalSelectClientCertificatesFunction::
DCHECK(matches);
std::vector<linked_ptr<api_pk::Match>> result_matches;
for (const scoped_refptr<net::X509Certificate>& match : *matches) {
+ chromeos::platform_keys::SubjectPublicKeyInfo key_info;
+ if (!chromeos::platform_keys::GetPublicKey(match, &key_info)) {
+ LOG(ERROR) << "Could not retrieve public key info.";
+ continue;
+ }
+ if (key_info.key_type != net::X509Certificate::kPublicKeyTypeRSA) {
+ LOG(ERROR) << "Skipping unsupported certificate with non-RSA key.";
+ continue;
+ }
+
linked_ptr<api_pk::Match> result_match(new api_pk::Match);
std::string der_encoded_cert;
net::X509Certificate::GetDEREncoded(match->os_cert_handle(),
&der_encoded_cert);
result_match->certificate.assign(der_encoded_cert.begin(),
der_encoded_cert.end());
+
+ BuildWebCryptoRSAAlgorithmDictionary(
+ key_info, &result_match->key_algorithm.additional_properties);
result_matches.push_back(result_match);
}
Respond(ArgumentList(
@@ -115,31 +188,43 @@ ExtensionFunction::ResponseAction PlatformKeysInternalSignFunction::Run() {
api_pki::Sign::Params::Create(*args_));
EXTENSION_FUNCTION_VALIDATE(params);
std::string platform_keys_token_id;
- if (!platform_keys::ValidateToken(params->token_id, &platform_keys_token_id))
+ if (!params->token_id.empty() &&
+ !platform_keys::ValidateToken(params->token_id,
+ &platform_keys_token_id)) {
return RespondNow(Error(platform_keys::kErrorInvalidToken));
+ }
+
+ scoped_ptr<chromeos::platform_keys::SignRSAParams> sign_params(
+ new chromeos::platform_keys::SignRSAParams);
- chromeos::platform_keys::HashAlgorithm hash_algorithm;
- if (params->hash_algorithm_name == "SHA-1")
+ chromeos::platform_keys::HashAlgorithm& hash_algorithm =
+ sign_params->hash_algorithm;
+ if (params->hash_algorithm_name == "none") {
+ hash_algorithm = chromeos::platform_keys::HASH_ALGORITHM_NONE;
+ sign_params->sign_direct_pkcs_padded = true;
+ } else if (params->hash_algorithm_name == "SHA-1") {
hash_algorithm = chromeos::platform_keys::HASH_ALGORITHM_SHA1;
- else if (params->hash_algorithm_name == "SHA-256")
+ } else if (params->hash_algorithm_name == "SHA-256") {
hash_algorithm = chromeos::platform_keys::HASH_ALGORITHM_SHA256;
- else if (params->hash_algorithm_name == "SHA-384")
+ } else if (params->hash_algorithm_name == "SHA-384") {
hash_algorithm = chromeos::platform_keys::HASH_ALGORITHM_SHA384;
- else if (params->hash_algorithm_name == "SHA-512")
+ } else if (params->hash_algorithm_name == "SHA-512") {
hash_algorithm = chromeos::platform_keys::HASH_ALGORITHM_SHA512;
- else
- return RespondNow(Error(platform_keys::kErrorAlgorithmNotSupported));
+ } else {
+ return RespondNow(Error(kErrorAlgorithmNotSupported));
+ }
+
+ sign_params->data.assign(params->data.begin(), params->data.end());
+ sign_params->public_key.assign(params->public_key.begin(),
+ params->public_key.end());
chromeos::PlatformKeysService* service =
chromeos::PlatformKeysServiceFactory::GetForBrowserContext(
browser_context());
DCHECK(service);
- service->Sign(
- platform_keys_token_id,
- std::string(params->public_key.begin(), params->public_key.end()),
- hash_algorithm, std::string(params->data.begin(), params->data.end()),
- extension_id(),
+ service->SignRSA(
+ platform_keys_token_id, sign_params.Pass(), extension_id(),
base::Bind(&PlatformKeysInternalSignFunction::OnSigned, this));
return RespondLater();
}

Powered by Google App Engine
This is Rietveld 408576698