blob: 6bbe2031285793ad489b7a9b881d13bad9d0d751 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
* Copyright (C) 2014 Named Data Networking Project
* See COPYING for copyright and distribution information.
*/
#include "common.hpp"
#include "random.hpp"
#include <cryptopp/osrng.h>
namespace ndn {
namespace random {
uint32_t
generateWord32()
{
static CryptoPP::AutoSeededRandomPool rng;
return rng.GenerateWord32();
}
} // namespace random
} // namespace ndn