比较存储在字符串中的256位十六进制

时间:2016-05-15 13:17:03

标签: c++

我有两个十六进制数存储在两个单独的字符串变量中。我必须比较这些字符串,以便找到最小的字符串。

string text = "Hello world!";
string temp;
string hash;
string target;


for(int nonce=0;nonce<1235;nonce++){ 
    temp = text + to_string(nonce);
    hash=sha256(temp);
    if(...)
    return temp;
}

在if语句中我应该添加类似&#34; if(hash&lt; = target)这样做..&#34;。有人有解决方案吗?

0 个答案:

没有答案