PxCrypt v0.1
Encrypt data within an image
Loading...
Searching...
No Matches
px_weaver.h
1#ifndef PX_WEAVER_H
2#define PX_WEAVER_H
3
4// Qt Includes
5#include <QImage>
6
7// Project Includes
8#include "px_access_write.h"
9
10namespace PxCrypt
11{
14class PxWeaver
15{
16//-Instance Variables------------------------------------------------------------------------------------------------------
17private:
18 PxAccessWrite* mCanvasAccess;
19 quint8 mClearMask;
20 quint8 mBuffer[4];
21
22//-Constructor---------------------------------------------------------------------------------------------------------
23public:
24 PxWeaver(PxAccessWrite* canvasAccess);
25
26//-Instance Functions----------------------------------------------------------------------------------------------
27private:
28 void fill();
29
30public:
31 void weave(quint8 chunk);
32 void flush();
33};
34
36}
37
38#endif // PX_WEAVER_H
The PxCrypt namespace is the main namespace through which all functionality of the PxCrypt library is...
Definition decode_error.cpp:5
QTextStream & flush(QTextStream &stream)