MessageDigest SHA-512 与 openssl 不同
我不明白我在这里做错了什么。我有以下代码:
byte[] digest = new byte[0];
MessageDigest md = null;
try{
md = MessageDigest.getInstance( "SHA-512" );
}
catch( NoSuchAlgorithmException e ) {
return digest;
}
digest = md.digest( myString.getBytes() );
在 NetBeans 调试器中查看摘要字节 [] 的十六进制值,它显示的内容与输出不同:
echo "myString" | openssl dgst -sha512
我猜这是一个字符编码问题,但 JVM 和 openssl 不使用机器的默认字符集?
任何帮助表示赞赏。
I can't figure out what I'm doing wrong here. I have the following code:
byte[] digest = new byte[0];
MessageDigest md = null;
try{
md = MessageDigest.getInstance( "SHA-512" );
}
catch( NoSuchAlgorithmException e ) {
return digest;
}
digest = md.digest( myString.getBytes() );
Looking at the hex values of digest byte[] in the NetBeans debugger, it shows something different than the output of:
echo "myString" | openssl dgst -sha512
I'm guessing it's a character encoding issue, but doesn't the JVM and openssl use the default character set for the machine?
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
echo
在末尾附加换行符 -尝试
echo -n
吗?echo
appends a newline at the end -Try
echo -n
?