edits
authorbdemsky <bdemsky@uci.edu>
Sat, 20 Jan 2018 07:50:58 +0000 (23:50 -0800)
committerbdemsky <bdemsky@uci.edu>
Sat, 20 Jan 2018 07:50:58 +0000 (23:50 -0800)
version2/src/C/Mac.h [new file with mode: 0644]

diff --git a/version2/src/C/Mac.h b/version2/src/C/Mac.h
new file mode 100644 (file)
index 0000000..4c4d0f6
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef MAC_H
+#define MAC_H
+#include "common.h"
+
+class Mac {
+public:
+       void update(Array<char> *array, int32_t offset, int32_t len);
+       Array<char> *doFinal();
+       void init(Key *key);
+};
+
+Mac *Mac_getInstance(const char *);
+#endif