티스토리 뷰
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
QString GetEncHmacSHA256Msg()
{
QByteArray Key = "testKey";
QString strValue, strHex;
QByteArray baValue, baEncData;
strValue.sprintf("%s|%s", Data, SerialNo);
baValue = strValue.toUtf8();
// HmacSHA256으로 암호화
baEncData = QMessageAuthenticationCode::hash(baValue, Key, QCryptographicHash::Sha256);
// Hex값을 String으로 변환
strHex = QString(baEncData.toHex());
return strHex;
}
|
cs |
반응형
'프로그래밍 > Qt' 카테고리의 다른 글
setResult() (0) | 2019.06.12 |
---|---|
QLabel 글자색 (0) | 2019.06.11 |
버튼 롤오버기능 + png (0) | 2019.06.11 |
투명 버튼 (0) | 2019.06.11 |
한달 지난 로그 파일 지우기 (0) | 2019.06.11 |
댓글
반응형
최근에 올라온 글
- Total
- Today
- Yesterday