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

Unified Diff: chrome/common/render_messages_internal.h

Issue 271112: Adds support for the <keygen> tag for client certificate enrollment... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Upload before checkin Created 11 years, 2 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
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/renderer/renderer_webkitclient_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages_internal.h
===================================================================
--- chrome/common/render_messages_internal.h (revision 29898)
+++ chrome/common/render_messages_internal.h (working copy)
@@ -1923,4 +1923,17 @@
IPC_MESSAGE_CONTROL1(ViewHostMsg_SocketStream_Close,
int /* socket_id */)
+ //---------------------------------------------------------------------------
+ // Request for cryptographic operation messages:
+ // These are messages from the renderer to the browser to perform a
+ // cryptographic operation.
+
+ // Asks the browser process to generate a keypair for grabbing a client
+ // certificate from a CA (<keygen> tag), and returns the signed public
+ // key and challenge string.
+ IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen,
+ uint32 /* key size index */,
+ std::string /* challenge string */,
+ GURL /* URL of requestor */,
+ std::string /* signed public key and challenge */)
IPC_END_MESSAGES(ViewHost)
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/renderer/renderer_webkitclient_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698