X-Git-Url: http://plrg.eecs.uci.edu/git/?p=iotcloud.git;a=blobdiff_plain;f=version2%2Fsrc%2FC%2FCrypto.h;h=27c5b4c3b8eebb23b0f95920bb531cbae8fd925b;hp=261e5a63c7cfd1b6c8273510711153930d3d19d0;hb=464b8559d386e200df16569f899f83e969115403;hpb=dc3d0d786139301d25dc0cd91a77a6cd7fa6cc07 diff --git a/version2/src/C/Crypto.h b/version2/src/C/Crypto.h index 261e5a6..27c5b4c 100644 --- a/version2/src/C/Crypto.h +++ b/version2/src/C/Crypto.h @@ -5,8 +5,9 @@ class AESKey { public: AESKey(Array *password, Array *salt, int iterationCount, int keyLength); - + ~AESKey(); private: + Array * key; }; #endif