Qt Cryptographic Architecture
|
#include <QtCrypto>
Public Member Functions | |
InitializationVector () | |
InitializationVector (int size) | |
InitializationVector (const SecureArray &a) | |
InitializationVector (const QByteArray &a) | |
![]() | |
SecureArray & | append (const SecureArray &a) |
char & | at (int index) |
const char & | at (int index) const |
void | clear () |
const char * | constData () const |
char * | data () |
const char * | data () const |
void | fill (char fillChar, int fillToPosition=-1) |
bool | isEmpty () const |
bool | operator!= (const MemoryRegion &other) const |
SecureArray & | operator+= (const SecureArray &a) |
SecureArray & | operator= (const SecureArray &from) |
SecureArray & | operator= (const QByteArray &a) |
bool | operator== (const MemoryRegion &other) const |
char & | operator[] (int index) |
const char & | operator[] (int index) const |
bool | resize (int size) |
SecureArray () | |
SecureArray (int size, char ch=0) | |
SecureArray (const char *str) | |
SecureArray (const QByteArray &a) | |
SecureArray (const MemoryRegion &a) | |
SecureArray (const SecureArray &from) | |
int | size () const |
QByteArray | toByteArray () const |
![]() | |
const char & | at (int index) const |
const char * | constData () const |
const char * | data () const |
bool | isEmpty () const |
bool | isNull () const |
bool | isSecure () const |
MemoryRegion (const char *str) | |
MemoryRegion (const QByteArray &from) | |
MemoryRegion (const MemoryRegion &from) | |
MemoryRegion & | operator= (const MemoryRegion &from) |
MemoryRegion & | operator= (const QByteArray &from) |
int | size () const |
QByteArray | toByteArray () const |
Additional Inherited Members | |
![]() | |
void | set (const SecureArray &from) |
void | set (const QByteArray &from) |
![]() | |
char & | at (int index) |
char * | data () |
MemoryRegion (bool secure) | |
MemoryRegion (int size, bool secure) | |
MemoryRegion (const QByteArray &from, bool secure) | |
bool | resize (int size) |
void | set (const QByteArray &from, bool secure) |
void | setSecure (bool secure) |
Container for initialisation vectors and nonces.
QCA::InitializationVector::InitializationVector | ( | ) |
Construct an empty (zero length) initisation vector.
QCA::InitializationVector::InitializationVector | ( | int | size | ) |
Construct an initialisation vector of the specified size.
size | the length of the initialisation vector, in bytes |
QCA::InitializationVector::InitializationVector | ( | const SecureArray & | a | ) |
Construct an initialisation vector from a provided byte array.
a | the byte array to copy |
QCA::InitializationVector::InitializationVector | ( | const QByteArray & | a | ) |
Construct an initialisation vector from a provided byte array.
a | the byte array to copy |