From: bdemsky Date: Sat, 20 Jan 2018 07:50:58 +0000 (-0800) Subject: edits X-Git-Url: http://plrg.eecs.uci.edu/git/?p=iotcloud.git;a=commitdiff_plain;h=4ab169190962b318562aa60088e9b7e1547917f4 edits --- diff --git a/version2/src/C/Mac.h b/version2/src/C/Mac.h new file mode 100644 index 0000000..4c4d0f6 --- /dev/null +++ b/version2/src/C/Mac.h @@ -0,0 +1,13 @@ +#ifndef MAC_H +#define MAC_H +#include "common.h" + +class Mac { +public: + void update(Array *array, int32_t offset, int32_t len); + Array *doFinal(); + void init(Key *key); +}; + +Mac *Mac_getInstance(const char *); +#endif