通过 Java 访问 GPU 进行加盐哈希
我正在寻找一个可以为我做一些加盐(MD5)哈希的程序。为了减少对系统的影响并提高速度,我想通过 GPU 运行计算。所以我有几个问题:
1) Java 是否原生支持 GPU 处理?
2) Java 是否原生支持 salted MD5 哈希?
3)有人知道已经有这样做的开源程序吗?
4)您认为还有什么可能有帮助的吗?
感谢对任何或所有问题的回答,甚至只是相关文档的链接。
谢谢。
I'm looking to write a program that can do some salted (MD5) hashing for me. To reduce the impact on my system, and increase the speed, I want to run the calculations through the GPU. So I have a few questions:
1) Does Java have native support for GPU processing?
2) Does Java have native support for salted MD5 hashing?
3) Is anybody aware of an open source program that already does this?
4) Anything else you think might be helpful?
Answers to any or all questions are appreciated, even just links to related documentation.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是与您有类似想法的人的博客:http://www.golubev.com/hashgpu .htm
他使用 GPU 发布了一个可用的哈希暴力破解器,可以在 这里。
Here is a blog by someone who has a similar idea to you: http://www.golubev.com/hashgpu.htm
He released a working hash bruteforcer using the GPU which can be found here.