edits
[iotcloud.git] / version2 / src / C / Slot.h
index b46e2ab822b298dd95bcc951f08ee4deeaa1868b..9085b3d9b96b6ad05f7a3bf52f0118adcd4244cf 100644 (file)
@@ -4,7 +4,6 @@
 #include "common.h"
 #include "Liveness.h"
 
-
 #define SLOT_SIZE 2048
 #define HMAC_SIZE 32
 
@@ -53,8 +52,8 @@ public:
        void decrementLiveCount();
        bool isLive() { return livecount > 0; }
        Array<char> *getSlotCryptIV();
-       friend Slot *Slotdecode(Table *table, Array<char> *array, Mac *mac);
+       friend Slot *Slot_decode(Table *table, Array<char> *array, Mac *mac);
 };
 
-Slot *Slotdecode(Table *table, Array<char> *array, Mac *mac);
+Slot *Slot_decode(Table *table, Array<char> *array, Mac *mac);
 #endif