edits
[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         
9  private:
10 };
11
12 #endif