crypto-browserify icon indicating copy to clipboard operation
crypto-browserify copied to clipboard

partial implementation of node's `crypto` for the browser

Results 47 crypto-browserify issues
Sort by recently updated
recently updated
newest added

I am running into an issue where I need to support md4 hashes. Would it be an option to use [this](https://github.com/emn178/js-md4) package to support md4?

from @indutny [on twitter](https://twitter.com/indutny/status/882303356978573314) what we can do to make it easier for this library to be tree shaken.

Could someone point me in the right direction of implementing createCredentials? Not much experience on this front but would like to try to dig into it.

Have you taken a look at http://www.w3.org/TR/WebCryptoAPI/ I've met quite recently Nadim Kobeissi @kaepora, man behind https://crypto.cat/ who also [participates in developing this spec](http://www.w3.org/Search/Mail/Public/advanced_search?keywords=&hdr-1-name=subject&hdr-1-query=&hdr-2-name=from&hdr-2-query=nadim%40nadim.cc&hdr-3-name=message-id&hdr-3-query=&period_month=&period_year=&index-grp=Public__FULL&index-type=t&type-index=public-webcrypto&resultsperpage=20&sortby=date)... I recommend contacting him directly with...

this is a new thing in v11

was added in 2.3.0

this is new as of 7.10 which we should probably add, it would make sense to probably put them in random-bytes but that would be a major version bump which...

these were added to node in v10.5.0 with some tweaked options in v10.9.0

Is there any options to browserify less code. Using just AES encryption I got a 300kb min file. Maybe using rollup or loading sub modules `require('crypto/aes')`.

I want to use this library in my project to archive NodeJS crypto on browser. I already downloaded the above package. In the given example it shows `createHash`. I want...