summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/qmessageauthenticationcode/main.cpp
blob: 90ea384319c5bb02f2a4f41032f79e5d37a233b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2016 Ruslan Nigmatullin <euroelessar@yandex.ru>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QtCore>

int main(int argc, char *argv[])
{
    QCoreApplication app(argc, argv);

//! [0]
    QByteArray key = "key";
    QByteArray message = "The quick brown fox jumps over the lazy dog";
//! [0]

//! [1]
    QMessageAuthenticationCode code(QCryptographicHash::Sha1);
    code.setKey(key);
    code.addData(message);
    code.result().toHex();      // returns "de7c9b85b8b78aa6bc8a7a36f70a90701c9db4d9"
//! [1]

//! [2]
    QMessageAuthenticationCode::hash(message, key, QCryptographicHash::Sha1).toHex();
//! [2]
}