webtag
webtag copied to clipboard
A free & open source online bookmarking tool
Results
2
webtag issues
Sort by
recently updated
recently updated
newest added
# Issue Description Webtag uses the following code (called by `getValidPassword`) to store and hash passwords: ```javascript const hashString = (str) => { return crypto.createHash("sha256", config.SECRET).update(str).digest("hex"); }; ``` I guess...