blob: c4225214d2db2af5e4213a4913a44ef7eb22bc47 [file] [log] [blame]
// Copyright 2008 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MINI_CHROMIUM_BASE_RAND_UTIL_H_
#define MINI_CHROMIUM_BASE_RAND_UTIL_H_
#include <stdint.h>
#include <string>
#include "base/containers/span.h"
namespace base {
uint64_t RandUint64();
int RandInt(int min, int max);
uint64_t RandGenerator(uint64_t range);
double RandDouble();
void RandBytes(span<uint8_t> output);
std::string RandBytesAsString(size_t length);
} // namespace base
#endif // MINI_CHROMIUM_BASE_RAND_UTIL_H_