相关疑难解决方法(0)

用盐腌SHA-512哈希暴力多长时间?(提供盐)

这是Java中的算法:

public String getHash(String password, String salt) throws Exception {
    String input = password + salt;
    MessageDigest md = MessageDigest.getInstance(SHA-512);
    byte[] out = md.digest(input.getBytes());
    return HexEncoder.toHex(out);
}
Run Code Online (Sandbox Code Playgroud)

假设盐是已知的.我想知道在密码是字典单词时以及它不是字典单词时暴力的时间.

hash cryptography salt sha brute-force

54
推荐指数
3
解决办法
9万
查看次数

标签 统计

brute-force ×1

cryptography ×1

hash ×1

salt ×1

sha ×1