admin管理员组

文章数量:1345190

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 ment.

Thanks.

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 ment.

Thanks.

Share Improve this question asked Jun 18, 2011 at 11:28 TomTom 8,15735 gold badges140 silver badges237 bronze badges 4
  • 9 Do you want to abuse your website visitors to generate bitcoins for you? ^^ – sod Commented Jun 18, 2011 at 12:11
  • @sod, not personally, but generally interested to see whether this is going to be something we might see in the future – Tom Commented Jun 18, 2011 at 12:19
  • Any news on a successful implementation? Is this really possible without loosing too much performance? – Dpp Commented Apr 24, 2012 at 15:01
  • i think this idea could be utilized to create a new block chain that can just be joined using a browser tab. node count could provide security. idk. – toraman Commented Dec 27, 2021 at 20:12
Add a ment  | 

3 Answers 3

Reset to default 7

This should be possible. Given an implementation of SHA as a fragment shader, you should be able to read back the results using readPixels:

Read Back Pixels [5.13.12] Pixels in the current framebuffer can be read back into an ArrayBufferView object.

void readPixels(int x, int y, long width, long height, enum format, enum type, Object pixels)

format: RGBA

type: UNSIGNED_BYTE

From the Kronos WebGL reference card (PDF)

For extra credit, do it all in an offscreen framebuffer, as described here.

Looks like this can be done (although in this case it's not SHA256). The following is an example of a JavaScript library that uses WebGL2 to calculate hash values on the client side, for the Curl hashing algoritm: https://github./iotaledger/curl.lib.js/

In this case it's used to do Proof of Work for an IOTA transaction (https://www.iota/get-started/what-is-iota). This basically es down to brute-forcing random inputs into the same hash function until the result matches a certain output. Therefore the gained hashing speed by using WebGL is very relevant. I have used it, and it works!

The next version of the Flash player (11) will support real hardware accelerated graphics, thus exposing the possibility to run pixel shaders on the graphics card. They could atleast in theory be used for general purpose puting.

There are some examples on Thibault Imberts blog.

本文标签: