Bug fixes + tabbing
[iotcloud.git] / version2 / src / C / Crypto.h
index 261e5a63c7cfd1b6c8273510711153930d3d19d0..5334335f08e0d97c5a60fdc16d04ed80828cc017 100644 (file)
@@ -1,12 +1,18 @@
 #ifndef CRYPTO_H
 #define CRYPTO_H
 #include "common.h"
+#include "aes.h"
 
 class AESKey {
 public:
        AESKey(Array<char> *password, Array<char> *salt, int iterationCount, int keyLength);
+       ~AESKey();
+       Array<char> *getKey();
+       WORD *getKeySchedule();
 
 private:
+       Array<char> *key;
+       WORD key_schedule[60];
 };
 
 #endif