Hi,

QByteArray l_byteArray = "hello world";

QCryptographicHash l_crpto( QCryptographicHash::Md5) ;

l_crpto.addData(l_byteArray);

l_byteArray = l_crpto.result();

qDebug<<l_byteArray ; //^╢;╗α▲ε╨?╦"╗Ã…Z═├

again how to convert hash value to bytearray like l_byteArray = "HELLOWORD";

Thanks in advance