排序数组会加密吗?它在密码学上是安全的吗?

问题描述 投票:0回答:0

排序数组会加密吗?它在密码学上是安全的吗?

#include <bits/stdc++.h>
    using namespace std;

int main(void) {
    string S;
    getline(cin, S);
    S += "Import(Security/Encryption)";
    for (int i = 0; i < S.size(); i++)
        sort(S.begin(), S.end());
    cout << S;
}

执行代码并得到一个看似安全的散列

encryption hash cryptography
© www.soinside.com 2019 - 2024. All rights reserved.