Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

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])
```