码迷,mamicode.com
首页 > 其他好文 > 详细

QT中生成字符串md5的方法

时间:2016-09-06 13:54:25      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:

QT提供了QCryptographicHash类,想转md5或者sda1都很方便

QString fileText = original_Image.text();
QString fileCut = fileText.remove(256,fileText.count() - 256);
fileCut += QTime::currentTime().toString();//加上时间戳再生成
    
QByteArray ba;
ba =QCryptographicHash::hash(fileCut.toUtf8(),QCryptographicHash::Md5);
QString tempFilenamemd5(ba.toHex());

比如我要生成随机文件名字,可以加上时间戳什么的,比如上面的写法。

QT中生成字符串md5的方法

标签:

原文地址:http://www.cnblogs.com/Philip-Tell-Truth/p/5845249.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!