UpdatedDecryp

Dependencies:   BahlDecrypModified CyaSSL mbed nRF51822

Fork of Decryptulator by Mobius IoT

Revision:
13:8b706583610a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Hashes/SlidingWindow.h	Tue May 09 03:06:55 2017 +0000
@@ -0,0 +1,22 @@
+#pragma once
+
+#include <stdio.h>
+#include "mbed.h"
+#include "ble/BLE.h"
+#include "ble/BLEProtocol.h"
+#include <map>
+
+using namespace std; 
+
+class SlidingWindow { 
+    private: 
+        void clearSlidingWindow(void);
+        void buildSlidingWindowTable();
+        void populateSlidingWindow(void);
+    public:
+        SlidingWindow(void);
+        ~SlidingWindow(void);
+        void moveSlidingWindow(uint32_t offset);
+
+
+};
\ No newline at end of file