summaryrefslogtreecommitdiffstats
path: root/base/rand_util_posix.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/rand_util_posix.cc')
-rw-r--r--base/rand_util_posix.cc27
1 files changed, 27 insertions, 0 deletions
diff --git a/base/rand_util_posix.cc b/base/rand_util_posix.cc
new file mode 100644
index 0000000..392cde5
--- /dev/null
+++ b/base/rand_util_posix.cc
@@ -0,0 +1,27 @@
+// Copyright (c) 2008 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 "base/rand_util.h"
+
+#include <fcntl.h>
+#include <sys/stat.h>
+#include <unistd.h>
+
+#include "base/logging.h"
+
+namespace base {
+
+uint64 RandUInt64() {
+ uint64 number;
+
+ int urandom_fd = open("/dev/urandom", O_RDONLY);
+ CHECK(urandom_fd >= 0);
+ ssize_t bytes_read = read(urandom_fd, &number, sizeof(number));
+ CHECK(bytes_read == sizeof(number));
+ close(urandom_fd);
+
+ return number;
+}
+
+} // namespace base