libcryfs/random/RandomGenerator.h

33 lines
822 B
C
Raw Normal View History

2015-10-22 17:36:03 +02:00
#ifndef MESSMER_CPPUTILS_RANDOM_RANDOMGENERATOR_H
#define MESSMER_CPPUTILS_RANDOM_RANDOMGENERATOR_H
#include "../data/FixedSizeData.h"
#include "../data/Data.h"
namespace cpputils {
class RandomGenerator {
public:
template<size_t SIZE> FixedSizeData<SIZE> getFixedSize();
Data get(size_t size);
protected:
virtual void _get(void *target, size_t bytes) = 0;
2015-10-22 17:36:03 +02:00
private:
static std::mutex _mutex;
};
template<size_t SIZE> inline FixedSizeData<SIZE> RandomGenerator::getFixedSize() {
FixedSizeData<SIZE> result = FixedSizeData<SIZE>::Null();
_get(result.data(), SIZE);
2015-10-22 17:36:03 +02:00
return result;
}
inline Data RandomGenerator::get(size_t size) {
Data result(size);
_get(result.data(), size);
2015-10-22 17:36:03 +02:00
return result;
}
}
#endif