我正在使用crypto ++来加密和解密字符串。代码如下所示。 代码加密用户名和密码。但我不知道如何将其解密为字符串。将加密的SHA256代码解密为字符串的代码是什么? 任何人都可以帮助我。
#include <cryptopp/hex.h>
#include <cryptopp/sha.h>
#include <cryptopp/base64.h>
#include <iostream>
#include <string>
int main()
{
CryptoPP::SHA256 hash;
byte digest[CryptoPP::SHA256::DIGESTSIZE];
std::string username, password, salt, output;
std::cout << "Enter username: ";
std::getline(std::cin,username);
std::cout << std::endl << "Enter password: ";
std::getline(std::cin,password);
salt = username + password;
hash.CalculateDigest(digest,(const byte *)salt.c_str(),salt.size());
CryptoPP::HexEncoder encoder;
CryptoPP::StringSink *SS = new CryptoPP::StringSink(output);
encoder.Attach(SS);
encoder.Put(digest,sizeof(digest));
encoder.MessageEnd();
std::cout << "The username/password salted hash is => " << output << std::endl;
return 0;
}
答案 0 :(得分:4)
此代码未执行加密,正如评论员已经指出的那样,但哈希。中心的区别在于,按设计进行散列是不可逆转的。这在密码应用程序中很重要,因为您明确地不想以任何可访问的形式存储用户的密码,而只是检查它们。
所以,简而言之:你不能“解密”你的哈希。
如果要检查提供的密码是否正确,请在代码中再次对其进行哈希处理,并将哈希值与原始密码的哈希值进行比较。