edits
[iotcloud.git] / version2 / src / C / Mac.h
1 #ifndef MAC_H
2 #define MAC_H
3 #include "common.h"
4
5 class Mac {
6 public:
7         void update(Array<char> *array, int32_t offset, int32_t len);
8         Array<char> *doFinal();
9         void init(Key *key);
10 };
11
12 Mac *Mac_getInstance(const char *);
13 #endif