首页 > 其他 > 详细

QT AES加密

时间:2021-09-08 18:02:22      阅读:63      评论:0      收藏:0      [点我收藏+]

一、

使用库:https://github.com/bricke/Qt-AES

二、代码举例

#include <QCryptographicHash>
技术分享图片
void MainWindow::on_pushButton_clicked()
{
    QAESEncryption encryption(QAESEncryption::AES_128, QAESEncryption::ECB, QAESEncryption::ZERO);

    QString key="12345";
    QString date="20200730";
    QString data="BFEBFBFF000406F1Z9ABXEMP"+date;

    QByteArray hashKey = QCryptographicHash::hash(key.toUtf8(), QCryptographicHash::Md5);
    QByteArray encodedText = encryption.encode(data.toUtf8(), hashKey);
    QString str_encode_text=QString::fromLatin1(encodedText.toBase64());
    qDebug()<<"encodedText:"<<str_encode_text;



    //QAESEncryption encryption(QAESEncryption::AES_128, QAESEncryption::ECB, QAESEncryption::ZERO);
    QByteArray hashKey2 = QCryptographicHash::hash(key.toUtf8(), QCryptographicHash::Md5);
    QByteArray decodedText = encryption.decode(QByteArray::fromBase64(str_encode_text.toLatin1()), hashKey2);
    qDebug()<<"decodedText:"<<QString::fromLatin1(decodedText);
    
}
技术分享图片

 

QT AES加密

原文:https://www.cnblogs.com/chinasoft/p/15242157.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!