randombytes
randombytes copied to clipboard
random bytes from browserify stand alone
This is based on this [discussion](https://github.com/browserify/crypto-browserify/issues/232) TL;DR: I propose having an implementation of `getRandomValues` that does not depend on a native implementation of crypto. I am having an issue with...
I just noticed that changes made on this PRs are not inlcuded on the last version of the package: https://github.com/browserify/randombytes/pull/34 and https://github.com/browserify/randombytes/pull/27 The `browser.js` file in my project still uses...
https://github.com/crypto-browserify/randombytes/blob/f18ded32b209f0d4c637608a11ae042ae96b4c2e/browser.js#L25-L26 Phantomjs is suspended and not being worked on any longer. Phantomjs have never been a browser that anyone is using due to lack of any UI. it was solo...
This library is broken on SSR,because webpack won't replace ```global``` to window object, and ```global.crypto``` is undefined.
Adding a `module` export makes rollup and webpack automatically use that package over the NodeJS one when importing it into a project.
When using `[email protected]` in a browser environment with Vite as the build tool, the following error occurs: ```bash Uncaught ReferenceError: global is not defined ``` This error stems from the...
I am using webpack to bundle my code. It can remove unused code by the process called tree-shaking, but it can only do it if the code is side effect...