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

https://github.com/calebboyd/derived-key

pbkdf2 password/secret hashing
https://github.com/calebboyd/derived-key

Last synced: 3 months ago
JSON representation

pbkdf2 password/secret hashing

Awesome Lists containing this project

README

          

## derived-key

Generate a secure (one-way) hash to store secrets with

```javascript
import { hash, verify } from 'derived-key'

async function main () {
const hashed = await hash('password')
return verify('password', hashed)
}

main().then(x => console.log(x)) //true
```

### Building & Testing

`npm i`

`npm run watch`