我使用java类CryptoSHA1BASE64.java将纯文本加密到sha1Base64密钥
String result = CryptoSHA1BASE64.hash(text);
类的代码 - CryptoSHA1BASE64.java是
import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import javax.servlet.ServletException;
public final class CryptoSHA1BASE64 {
public static String hash(String plaintext) throws ServletException {
MessageDigest md = null;
try {
md = MessageDigest.getInstance("SHA"); // SHA-1 generator instance
} catch (NoSuchAlgorithmException e) {
throw new ServletException(e.getMessage());
}
try {
md.update(plaintext.getBytes("UTF-8")); // Message summary
// generation
} catch (UnsupportedEncodingException e) {
throw new ServletException(e.getMessage());
}
byte raw[] = md.digest(); // Message summary reception
try {
String hash = new String(org.apache.commons.codec.binary.Base64.encodeBase64(raw), "UTF-8");
return hash;
} catch (UnsupportedEncodingException use) {
throw new ServletException(use);
}
}
}
我想将生成的密钥解密回纯文本,我尝试了同样的方法,即apache commons的解密方法 -
Base64.decodeBase64(键)
但是,我提出一些奇怪的字符而不是纯文字。任何建议/意见都会有很大帮助。感谢!!!
答案 0 :(得分:2)
哈希算法是一种方法。您无法取消删除字符串以获取原始文本。这就是为什么这些算法在存储在数据库之前用于密码的原因,因此即使数据库被黑客攻击,也无法获得原始文本。