Varun Bahl / Mbed 2 deprecated Decryptulator

Dependencies:   BahlDecrypModified CyaSSL mbed nRF51822

Fork of Decryptulator by Mobius IoT

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers SlidingWindow.h Source File

SlidingWindow.h

00001 #pragma once
00002 
00003 #include <stdio.h>
00004 #include "mbed.h"
00005 #include "ble/BLE.h"
00006 #include "ble/BLEProtocol.h"
00007 #include <map>
00008 
00009 using namespace std; 
00010 
00011 class SlidingWindow { 
00012     private: 
00013         void clearSlidingWindow(void);
00014         void buildSlidingWindowTable();
00015         void populateSlidingWindow(void);
00016     public:
00017         SlidingWindow(void);
00018         ~SlidingWindow(void);
00019         void moveSlidingWindow(uint32_t offset);
00020 
00021 
00022 };