bytebuffer
[iotcloud.git] / version2 / src / C / Crypto.h
1 #ifndef CRYPTO_H
2 #define CRYPTO_H
3 #include "common.h"
4
5 class AESKey {
6 public:
7         AESKey(Array<char> *password, Array<char> *salt, int iterationCount, int keyLength);
8         ~AESKey();
9         Array<char> * getKey();
10         
11 private:
12         Array<char> * key;
13 };
14
15 #endif