space hacks
[iotcloud.git] / version2 / src / C / SecureRandom.h
1 #ifndef SECURERANDOM_H
2 #define SECURERANDOM_H
3 #include "common.h"
4
5 class SecureRandom {
6 public:
7         SecureRandom();
8         void nextBytes(Array<char> *array);
9         int32_t nextInt(int32_t val);
10 private:
11 };
12 #endif