Strings.java 文件源码

java
阅读 21 收藏 0 点赞 0 评论 0

项目:fort_j 作者:
@ApiMethod
@Comment(value = "Hash the bytes with the given algorithm")
public static String hash(byte[] byteArr, String algorithm)
{
   try
   {
      MessageDigest digest = MessageDigest.getInstance(algorithm);
      digest.update(byteArr);
      byte[] bytes = digest.digest();

      String hex = (new HexBinaryAdapter()).marshal(bytes);

      return hex;
   }
   catch (Exception ex)
   {
      Lang.rethrow(ex);
   }
   return null;
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号