Como criptografar um texto usando QCryptographicHash, em Qt
hamishwillee
(Talk | contribs) m (Hamishwillee - Automated change of category from Lang-PT to Unlikely Category. (Moving)) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot update of Template:ArticleMetaData) |
||
| Line 2: | Line 2: | ||
[[Category:Qt]] | [[Category:Qt]] | ||
[[Category:Code Examples]] | [[Category:Code Examples]] | ||
| − | |||
__NOTOC__ | __NOTOC__ | ||
__NOEDITSECTION__ | __NOEDITSECTION__ | ||
{{ArticleMetaData | {{ArticleMetaData | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
|sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) --> | |sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) --> | ||
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| + | |devices= S60 Emulator | ||
|sdk=<!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | |sdk=<!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | ||
| + | |platform=S60 3rd Edition FP1, S60 3rd Edition FP2, S60 5th Edition | ||
|devicecompatability=<!-- Compatible devices (e.g.: All* (must have GPS) ) --> | |devicecompatability=<!-- Compatible devices (e.g.: All* (must have GPS) ) --> | ||
| + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
|signing=<!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | |signing=<!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | ||
|capabilities=<!-- Capabilities required (e.g. Location, NetworkServices.) --> | |capabilities=<!-- Capabilities required (e.g. Location, NetworkServices.) --> | ||
| − | | | + | |keywords=QCryptographicHash,QByteArray |
| + | |id=... | ||
| + | |language=Lang-Portuguese | ||
| + | |translated-by=[[User:Valderind4]] | ||
| + | |translated-from-title=How to calculate hash for a text using QCryptographicHash in Qt | ||
| + | |translated-from-id=61730 <!-- automated guess --> | ||
| + | |review-by=<!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate=20090922 | ||
| + | |author=[[User:Mind freak]] | ||
| + | |||
| + | <!-- The following items are not in the standard metadata template --> | ||
| + | |category=Qt for S60 | ||
| + | |subcategory=UI | ||
}} | }} | ||
| Line 85: | Line 94: | ||
[[Image:Crypto.JPG]] | [[Image:Crypto.JPG]] | ||
| + | <!-- Translation --> [[en:How to calculate hash for a text using QCryptographicHash in Qt]] | ||
Revision as of 01:59, 19 December 2011
Dados do artigo
Testado com
Aparelho(s): S60 Emulator
Compatibilidade
Plataforma(s): S60 3rd Edition FP1, S60 3rd Edition FP2, S60 5th Edition
Artigo
Palavras-chave: QCryptographicHash,QByteArray
Tradução:
Por valderind4
Última alteração feita por hamishwillee
em 19 Dec 2011
Introdução
A classe QCryptographicHash provê um modo de gerar hashes de criptografia, podendo ser usada para hashes de criptografia de binários ou de dados de textos.
Este criptografia é usada quando você deseja enviar alguma informação de um modo seguro. O texto criptografado é chamado de texto chiper.
Pré-requisitos
- Baixe e instale a versão atual do Qt para Symbian segundo as instruções deste artigo.
Algumas funcionalidades relacionadas
- Adiciona às informações hashes de criptografia.
QByteArray string="Nokia"; hash->addData(string);
- Retorna o valor hash final.
QByteArray string1=hash->result();
Código fonte
Main.cpp
#include <QtGui/QApplication>
#include "textcodec.h"
#include<QWidget>
#include<QHBoxLayout>
#include <QCryptographicHash>
#include<QString>
#include<QByteArray>
#include<QLabel>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QWidget *win=new QWidget();
QHBoxLayout *lay=new QHBoxLayout();
QLabel *lbl=new QLabel();
QLabel *lbl1=new QLabel("Encrypted Text:");
lbl1->setBuddy(lbl);
QByteArray string="Nokia";
QCryptographicHash *hash=new QCryptographicHash(QCryptographicHash::Md4);
hash->addData(string);
QByteArray string1=hash->result();
lbl->setText(string1);
lay->addWidget(lbl1);
lay->addWidget(lbl);
win->setLayout(lay);
win->setStyleSheet("* { background-color:rgb(199,147,88); padding: 7px ; color:rgb(255,255,255)}");
win->showMaximized();
return a.exec();
}
Captura de tela
Leia mais: QCryptographicHash

