Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dotcypress/password
🔐 One password, right way.
https://github.com/dotcypress/password
Last synced: about 2 months ago
JSON representation
🔐 One password, right way.
- Host: GitHub
- URL: https://github.com/dotcypress/password
- Owner: dotcypress
- Created: 2016-12-28T12:11:37.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-03-31T05:15:17.000Z (over 4 years ago)
- Last Synced: 2024-10-14T14:19:13.843Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 241 KB
- Stars: 118
- Watchers: 5
- Forks: 16
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- awesome-nextjs - Password - One password, right way. (Apps)
- fucking-awesome-nextjs - Password - One password, right way. (Apps)
README
# password.now.sh
```js
hash = pbkdf2('SHA256 HMAC'
password: masterPassword,
salt: tld + username,
iterations: 10_000 + passwordIndex,
keySize: 16)
password = hash.map(byte => alphabetRFC1924[byte % alphabetRFC1924.length])
```