Is it possible to calculate sha256 hashes in the browser using the user’s video card, eg. by using WebGL or Flash?
I’m afraid this is all there is to ask, but if more elaboration is needed please do not hesitate to tell me in a comment.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This should be possible. Given an implementation of SHA as a fragment shader, you should be able to read back the results using readPixels:
From the Kronos WebGL reference card (PDF)
For extra credit, do it all in an offscreen framebuffer, as described here.