本文整理汇总了Java中com.google.common.hash.Hashing.sha256方法的典型用法代码示例。如果您正苦于以下问题:Java Hashing.sha256方法的具体用法?Java Hashing.sha256怎么用?Java Hashing.sha256使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.common.hash.Hashing
的用法示例。
在下文中一共展示了Hashing.sha256方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: hash
import com.google.common.hash.Hashing; //导入方法依赖的package包/类
/**
* hash input with sha256
*
* @param is a stream of bytes to hash
* @return hash result
*/
public static byte[] hash(InputStream is) {
HashingInputStream his = new HashingInputStream(Hashing.sha256(), is);
try {
ByteStreams.copy(his, ByteStreams.nullOutputStream());
return his.hash().asBytes();
} catch (IOException e) {
throw new RuntimeException("Unable to compute hash while signing request: " + e.getMessage(), e);
}
}
示例2: sha256
import com.google.common.hash.Hashing; //导入方法依赖的package包/类
public static HashCode sha256(final String x) {
Preconditions.checkNotNull(x);
final Charset charset = Charsets.UTF_8;
final HashFunction hashFunction = Hashing.sha256();
return hashFunction.newHasher()
.putString(x, charset)
.hash();
}
示例3: hashFile
import com.google.common.hash.Hashing; //导入方法依赖的package包/类
public static HashCode hashFile(final Path path) throws IOException {
Preconditions.checkNotNull(path);
final HashFunction hashFunction = Hashing.sha256();
return hashFunction.newHasher()
.putBytes(MoreFiles.asByteSource(path).read())
.hash();
}