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