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

Unified Diff: ipc/brokerable_attachment_win.cc

Issue 1345633002: ipc: Move //crypto dependency into a Windows-only file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 | « ipc/brokerable_attachment.cc ('k') | ipc/handle_attachment_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/brokerable_attachment_win.cc
diff --git a/ipc/brokerable_attachment_win.cc b/ipc/brokerable_attachment_win.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6b567e60a8a2a34b964afb19f46b371e8429227e
--- /dev/null
+++ b/ipc/brokerable_attachment_win.cc
@@ -0,0 +1,18 @@
+// 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 "ipc/brokerable_attachment.h"
+
+#include "crypto/random.h"
+
+namespace IPC {
+
+BrokerableAttachment::AttachmentId::AttachmentId() {
+ // In order to prevent mutually untrusted processes from stealing resources
+ // from one another, the nonce must be secret. This generates a 128-bit,
+ // cryptographicaly-strong random number.
+ crypto::RandBytes(nonce, BrokerableAttachment::kNonceSize);
+}
+
+} // namespace IPC
« no previous file with comments | « ipc/brokerable_attachment.cc ('k') | ipc/handle_attachment_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698