summaryrefslogtreecommitdiff
path: root/crypto/random.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/random.h')
-rw-r--r--crypto/random.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/crypto/random.h b/crypto/random.h
deleted file mode 100644
index 002616bd30..0000000000
--- a/crypto/random.h
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (c) 2012 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 CRYPTO_RANDOM_H_
-#define CRYPTO_RANDOM_H_
-
-#include <stddef.h>
-
-#include "crypto/crypto_export.h"
-
-namespace crypto {
-
-// Fills the given buffer with |length| random bytes of cryptographically
-// secure random numbers.
-// |length| must be positive.
-CRYPTO_EXPORT void RandBytes(void *bytes, size_t length);
-
-}
-
-#endif