argon2-browser icon indicating copy to clipboard operation
argon2-browser copied to clipboard

Argon2 library compiled for browser runtime

Results 22 argon2-browser issues
Sort by recently updated
recently updated
newest added

How to use this for local usage?

Hi, I have used this library in my electron app development with webpack config as maintainers sample code. This library works perfectly when in development however in production it fires...

Got this failure in recent upgrade. I've tried some solutions, such as https://github.com/webpack-contrib/css-loader/issues/447, but unlucky so far. Can you help? ``` Compiled with problems:X ERROR in ./node_modules/argon2-browser/dist/argon2.js 49:26-39 Module not...

See [simnalamburt/argon2-browser-error-repro](https://github.com/simnalamburt/argon2-browser-error-repro) for the error reproduction. Works in Node.js < 18.1.0, fails with Node.js >= 18.1.0. ```console $ npm install # or `yarn install`, `pnpm install`, etc $ node ....

closes #66 closes #67 If you agree to accept this, don't make a release immediately, I'm planning to propose additional changes in future PRs.

Is there a way to use this package with Snowpack bundler? When we add to the project, snowpack throws the below error. I am not sure what needs to be...

Running `hash` defines a global variable `Module` with some internal stuff. Probably this comes from `emscripten` but would be better to avoid this, because of: - possible collision that may...

``` $ node Welcome to Node.js v16.3.0. Type ".help" for more information. > const { hash } = require('argon2-browser/dist/argon2-bundled.min') undefined > hash({ pass: 'password', salt: 'somesalt' }) Promise { }...

The type name in the demo is Argon2di, but it should be Argon2id. ![image](https://user-images.githubusercontent.com/309938/190241271-79a62224-e46e-47d0-a0ea-4a491cda3161.png) Source: https://en.wikipedia.org/wiki/Argon2 (Wanted to make a small PR, but had issues cloning repo due to the...