devchrisar / Gotapes

social network created using react and golang
https://www.youtube.com/watch?v=R6VAgxnkJmA
MIT License
2 stars 0 forks source link

(GO-S1045) Using a cost factor of less than 10 for bcrypt #1

Closed devchrisar closed 1 year ago

devchrisar commented 1 year ago

Description

Using a more significant cost factor significantly increases the compute required to brute-force the passwords from the keys. It is recommended to use a cost factor of more than (or equal to) 10 for bcrypt. But note that there's a trade-off, a higher iteration count will increase the cost of …

Occurrences

There is 1 occurrence of this issue in the repository.

See all occurrences on DeepSource → app.deepsource.com/gh/devchrisar/Gotapes/issue/GO-S1045/occurrences/

devchrisar commented 1 year ago

the issue with GO-S1045 has been resolved. The recommended solution of using a cost factor of 10 or higher for bcrypt has been implemented to increase the security of password protection.