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

Unified Diff: content/browser/net/keygen_handler.h

Issue 18121007: *WIP* Store NSS slots per profile. Move keygen to chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: certdb: handle GetCertTrust and IsUntrusted, failed attempt to handle SetCertTrust Created 7 years, 1 month 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/browser/net/keygen_handler.h
diff --git a/content/browser/net/keygen_handler.h b/content/browser/net/keygen_handler.h
new file mode 100644
index 0000000000000000000000000000000000000000..4ee362bf44b656b3134f14d600dc3e4004de16a7
--- /dev/null
+++ b/content/browser/net/keygen_handler.h
@@ -0,0 +1,32 @@
+// Copyright (c) 2013 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.
+
+#ifndef CONTENT_BROWSER_NET_KEYGEN_HANDLER_H_
+#define CONTENT_BROWSER_NET_KEYGEN_HANDLER_H_
+
+#include <string>
+
+#include "base/callback.h"
+#include "url/gurl.h"
+
+namespace content {
+
+class ResourceContext;
+
+// Handles keypair generation for generating client certificates via the
+// <keygen> tag.
+// <http://dev.w3.org/html5/spec/Overview.html#the-keygen-element>
+// <https://developer.mozilla.org/En/HTML/HTML_Extensions/KEYGEN_Tag>
+
+// TODO(mattm): ideally this should take a specific tab as the context, so that
+// it can use tab-modal dialogs.
+void GenerateKey(ResourceContext* context,
+ int key_size_in_bits,
+ const std::string& challenge,
+ const GURL& url,
+ const base::Callback<void(const std::string&)>& callback);
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_NET_KEYGEN_HANDLER_H_
« no previous file with comments | « chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp ('k') | content/browser/net/keygen_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698