blob: a2e53ba63b77fce428b4a6bf7a902202f937a385 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "common.h"
using namespace Botan;
RandomNumberGenerator& global_rng()
{
static RandomNumberGenerator* rng = 0;
if(!rng)
rng = RandomNumberGenerator::make_rng();
return *rng;
}
|