Tianxiu (Tyson) Zhou
Tianxiu (Tyson) Zhou
### What problem does this feature solve? Enable the usage of custom category bar label texts, instead of just percentage values. For example, the following component ```ts ``` may display...
Correct description of default argon2 parameters. Fixes #974
The actual default options for argon2 hash produces ```ts console.log(hash("123456")); // $argon2id$v=19$m=19456,t=2,p=1$s8PyJzwJrGsbdsRzx4du5g$2lD5nmjRI3zTeUci5GJoAuVMGV9viplQuEHwG3wT14o ``` Indicating `memoryCost = 19 * 2 ** 10`, `timeCost = 2`, instead of what are suggested in...