mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-24 14:23:36 -05:00
5ea8cfb67d
* Compilation for FreeBSD. * Notes that MT is not cryptographically secure. * modified sorting of DHT Window. Only one change that I didn't commit: bitdht { - LIBS += ../../libbitdht/src/lib/libbitdht.a - PRE_TARGETDEPS *= ../../libbitdht/src/lib/libbitdht.a + LIBS += ../../libbitdht/src/libbitdht.a + PRE_TARGETDEPS *= ../../libbitdht/src/libbitdht.a } As this would have broken compilation on the other platforms. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4619 b45a01b8-16f6-495d-af2f-9b41ad6348cc
64 lines
2.0 KiB
C++
64 lines
2.0 KiB
C++
/****************************************************************
|
|
* RetroShare is distributed under the following license:
|
|
*
|
|
* Copyright (C) 2010 Cyril Soler <csoler@users.sourceforge.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
****************************************************************/
|
|
|
|
#pragma once
|
|
|
|
// RSRandom contains a random number generator that is
|
|
// - thread safe
|
|
// - system independant
|
|
// - fast
|
|
// - NOT CRYPTOGRAPHICALLY SAFE
|
|
// - DO NOT USE FOR ANYTHING REQUIRING STRONG RANDOMNESS
|
|
//
|
|
// The implementation is adapted from the Mersenne Twister page of Wikipedia.
|
|
//
|
|
// http://en.wikipedia.org/wiki/Mersenne_twister
|
|
|
|
#include <vector>
|
|
#include <util/rsthreads.h>
|
|
|
|
class RSRandom
|
|
{
|
|
public:
|
|
static uint32_t random_u32() ;
|
|
static uint64_t random_u64() ;
|
|
static float random_f32() ;
|
|
static double random_f64() ;
|
|
|
|
static bool seed(uint32_t s) ;
|
|
|
|
static std::string random_alphaNumericString(uint32_t length) ;
|
|
|
|
private:
|
|
static RsMutex rndMtx ;
|
|
|
|
static const uint32_t N = 624;
|
|
static const uint32_t M = 397;
|
|
|
|
static const uint32_t MATRIX_A = 0x9908b0dfUL;
|
|
static const uint32_t UMASK = 0x80000000UL;
|
|
static const uint32_t LMASK = 0x7fffffffUL;
|
|
|
|
static void locked_next_state() ;
|
|
static uint32_t index ;
|
|
static std::vector<uint32_t> MT ;
|
|
};
|