Bug fixes + tabbing
[iotcloud.git] / version2 / src / C / SecureRandom.h
index a62c7e746124da80c7dc139f93afdd2c7a8042ae..f5d1af055653e737b646286379ba56e0de1b4cb9 100644 (file)
@@ -1,8 +1,12 @@
 #ifndef SECURERANDOM_H
 #define SECURERANDOM_H
+#include "common.h"
+
 class SecureRandom {
 public:
        SecureRandom();
        void nextBytes(Array<char> *array);
+       int32_t nextInt(int32_t val);
+private:
 };
 #endif