如何在Java中使用sha256散列一些字符串?有人知道任何免费图书馆吗?
答案 0 :(得分:266)
SHA-256不是“编码” - 它是单向散列。
你基本上将字符串转换为字节(例如使用text.getBytes(StandardCharsets.UTF_8)
)然后散列字节。请注意,散列的结果也是任意二进制数据,如果要在字符串中表示,则应使用base64或hex ... 不要尝试使用String(byte[], String)
构造函数。
e.g。
MessageDigest digest = MessageDigest.getInstance("SHA-256");
byte[] hash = digest.digest(text.getBytes(StandardCharsets.UTF_8));
答案 1 :(得分:145)
我认为最简单的解决方案是使用Apache Common Codec:
String sha256hex = org.apache.commons.codec.digest.DigestUtils.sha256Hex(stringText);
答案 2 :(得分:92)
另一个替代方案是Guava,它有一套易于使用的Hashing实用程序。例如,要使用SHA256作为十六进制字符串来散列字符串,您只需执行以下操作:
final String hashed = Hashing.sha256()
.hashString("your input", StandardCharsets.UTF_8)
.toString();
答案 3 :(得分:74)
完整示例hash to string as another string。
public static String sha256(String base) {
try{
MessageDigest digest = MessageDigest.getInstance("SHA-256");
byte[] hash = digest.digest(base.getBytes("UTF-8"));
StringBuffer hexString = new StringBuffer();
for (int i = 0; i < hash.length; i++) {
String hex = Integer.toHexString(0xff & hash[i]);
if(hex.length() == 1) hexString.append('0');
hexString.append(hex);
}
return hexString.toString();
} catch(Exception ex){
throw new RuntimeException(ex);
}
}
答案 4 :(得分:34)
如果您使用的是Java 8,则可以通过执行
对byte[]
进行编码
MessageDigest digest = MessageDigest.getInstance("SHA-256");
byte[] hash = digest.digest(text.getBytes(StandardCharsets.UTF_8));
String encoded = Base64.getEncoder().encodeToString(hash);
答案 5 :(得分:7)
Convert Java String to Sha-256 Hash
import java.security.MessageDigest;
public class CodeSnippets {
public static String getSha256(String value) {
try{
MessageDigest md = MessageDigest.getInstance("SHA-256");
md.update(value.getBytes());
return bytesToHex(md.digest());
} catch(Exception ex){
throw new RuntimeException(ex);
}
}
private static String bytesToHex(byte[] bytes) {
StringBuffer result = new StringBuffer();
for (byte b : bytes) result.append(Integer.toString((b & 0xff) + 0x100, 16).substring(1));
return result.toString();
}
}
答案 6 :(得分:6)
String hashWith256(String textToHash) {
MessageDigest digest = MessageDigest.getInstance("SHA-256");
byte[] byteOfTextToHash = textToHash.getBytes(StandardCharsets.UTF_8);
byte[] hashedByetArray = digest.digest(byteOfTextToHash);
String encoded = Base64.getEncoder().encodeToString(hashedByetArray);
return encoded;
}
答案 7 :(得分:5)
我通过import UIKit
import Alamofire
import XCPlayground
XCPlaygroundPage.currentPage.needsIndefiniteExecution = true
Alamofire.request(.GET, "http://localhost:5010/asdf")
.responseJSON { response in
print ("Hello there in playground")
print(response.request) // original URL request
print(response.response) // URL response
print(response.data) // server data
print(response.result) // result of response serialization
if let JSON = response.result.value {
print("JSON: \(JSON)")
}
XCPlaygroundPage.currentPage.finishExecution()
}
追踪了Apache代码,DigestUtils
似乎默认返回sha256
进行计算。 Apache没有实现独立的java.security.MessageDigest
解决方案。我正在寻找一个独立的实现来与sha256
库进行比较。仅供参考。
答案 8 :(得分:1)
您可以通过以下方式使用MessageDigest:
public function reach(User $user, Profile $profile, Photo $photo)
{
return $profile->id === $photo->profile->id;
}
答案 9 :(得分:1)
这是一种将摘要转换为十六进制字符串的更高效的方法:
var boatLengths = new Dictionary<string, int> {
{"1", 5},
{"2", 4},
{"3", 3},
{"4", 3},
{"5", 2}
};
int len;
return boatLengths.TryGetValue(t, out len) ? len : -1;
有没有人知道Java中更快的方式?
答案 10 :(得分:1)
在Java 8中
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Scanner;
import javax.xml.bind.DatatypeConverter;
Scanner scanner = new Scanner(System.in);
String password = scanner.nextLine();
scanner.close();
MessageDigest digest = null;
try {
digest = MessageDigest.getInstance("SHA-256");
} catch (NoSuchAlgorithmException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
byte[] hash = digest.digest(password.getBytes(StandardCharsets.UTF_8));
String encoded = DatatypeConverter.printHexBinary(hash);
System.out.println(encoded.toLowerCase());
答案 11 :(得分:0)
这是我使用Kotlin的方法:
private fun getHashFromEmailString(email : String) : String{
val charset = Charsets.UTF_8
val byteArray = email.toByteArray(charset)
val digest = MessageDigest.getInstance("SHA-256")
val hash = digest.digest(byteArray)
return hash.toString()
}
答案 12 :(得分:0)
private static String getMessageDigest(String message, String algorithm) {
MessageDigest digest;
try {
digest = MessageDigest.getInstance(algorithm);
byte data[] = digest.digest(message.getBytes("UTF-8"));
return convertByteArrayToHexString(data);
} catch (NoSuchAlgorithmException | UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
您可以使用以下类似的算法调用上述方法。
getMessageDigest(message, "MD5");
getMessageDigest(message, "SHA-256");
getMessageDigest(message, "SHA-1");
您可以参考此link以获得完整的申请。
答案 13 :(得分:0)
在Java中, MessageDigest 类用于计算加密哈希值。此类提供加密哈希函数( MD5 , SHA-1 和 SHA-256 )以查找文本的哈希值。
使用SHA-256算法的代码示例。
public void printHash(String str) throws NoSuchAlgorithmException {
MessageDigest md=MessageDigest.getInstance("SHA-256");
byte[] sha256=md.digest(str.getBytes(StandardCharsets.UTF_8));
for(byte b : sha256){
System.out.printf("%02x",b);
}
}
答案 14 :(得分:0)
这就是我用于哈希处理的内容:
String pass = "password";
MessageDigest messageDigest = MessageDigest.getInstance("SHA-256");
byte hashBytes[] = messageDigest.digest(pass.getBytes(StandardCharsets.UTF_8));
BigInteger noHash = new BigInteger(1, hashBytes);
String hashStr = noHash.toString(16);
输出:5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8
答案 15 :(得分:0)
这是一个返回 String
的方法:
public static String sha256(final String data) {
try {
final byte[] hash = MessageDigest.getInstance("SHA-256").digest(data.getBytes(StandardCharsets.UTF_8));
final StringBuilder hashStr = new StringBuilder(hash.length);
for (byte hashByte : hash)
hashStr.append(Integer.toHexString(255 & hashByte));
return hashStr.toString();
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
return null;
}
}