#include <QtCrypto>
Inheritance diagram for QCA::Hex:
Public Member Functions | |
Hex (Direction dir=Encode) | |
virtual void | clear () |
virtual MemoryRegion | update (const MemoryRegion &a) |
virtual MemoryRegion | final () |
virtual bool | ok () const |
hextest.cpp, and randomtest.cpp.
|
Standard constructor.
|
|
Reset the internal state. This is useful to reuse an existing Hex object Implements QCA::Filter. |
|
Process more data, returning the corresponding encoded or decoded (depending on the Direction set in the constructor or setup() call) representation. If you find yourself with code that only calls this method once, you might be better off using encode() or decode(). Similarly, if the data is really a string, you might be better off using arrayToString(), encodeString(), stringToArray() or decodeString().
Implements QCA::Filter. |
|
Complete the algorithm.
Implements QCA::Filter. |
|
Test if an update() or final() call succeeded.
Implements QCA::Filter. |