Home · All Namespaces · All Classes · Main Classes · Grouped Classes · Modules · Functions

QCryptographicHash Class Reference
[QtCore module]

The QCryptographicHash class provides a way to generate cryptographic hashes. More...

 #include <QCryptographicHash>

Note: All the functions in this class are reentrant.

This class was introduced in Qt 4.3.

Public Types

Public Functions

Static Public Members


Detailed Description

The QCryptographicHash class provides a way to generate cryptographic hashes.

QCryptographicHash can be used to generate cryptographic hashes of binary or text data.

Currently MD4, MD5, and SHA1 are supported.


Member Type Documentation

enum QCryptographicHash::Algorithm

ConstantValueDescription
QCryptographicHash::Md40Generate an MD4 hash sum
QCryptographicHash::Md51Generate an MD5 hash sum
QCryptographicHash::Sha12Generate an SHA1 hash sum


Member Function Documentation

QCryptographicHash::QCryptographicHash ( Algorithm method )

Constructs an object that can be used to create a cryptographic hash from data using method.

QCryptographicHash::~QCryptographicHash ()

Destroys the object.

void QCryptographicHash::addData ( const char * data, int length )

Adds the first length chars of data to the cryptographic hash.

void QCryptographicHash::addData ( const QByteArray & data )

This is an overloaded member function, provided for convenience.

/overload

QByteArray QCryptographicHash::hash ( const QByteArray & data, Algorithm method )   [static]

Returns the hash of data using method.

void QCryptographicHash::reset ()

Resets the object.

QByteArray QCryptographicHash::result () const

Returns the final hash value.

See also QByteArray::toHex().


Copyright © 2008 Nokia Trademarks
Qt 4.4.3