PxCrypt v0.1
Encrypt data within an image
Loading...
Searching...
No Matches
bit_chunker.h
1#ifndef BIT_CHUNKER_H
2#define BIT_CHUNKER_H
3
4// Qt Includes
5#include <QByteArrayView>
6
7namespace PxCrypt
8{
11class BitChunker
12{
13//-Instance Variables------------------------------------------------------------------------------------------------------
14private:
17 quint8 mBitIdx;
18 quint8 mChunkSize;
19
20//-Constructor---------------------------------------------------------------------------------------------------------
21public:
22 BitChunker(QByteArrayView data, quint8 chunkSize);
23
24//-Instance Functions----------------------------------------------------------------------------------------------
25private:
26 void advance();
27
28public:
29 quint8 next();
30 bool hasNext() const;
31};
32
34}
35
36#endif // BIT_CHUNKER_H
The PxCrypt namespace is the main namespace through which all functionality of the PxCrypt library is...
Definition decode_error.cpp:5
typedef const_iterator