# bcrypt-password

> bcrypt password hash and check functions

Latest version **2.0.0** (published 2019-07-02) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install bcrypt-password
pnpm add bcrypt-password
yarn add bcrypt-password
bun add bcrypt-password
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.0.0 |
| Published | 2019-07-02 |
| First published | 2015-02-01 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 1.4 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Kyle E. Mitchell |
| Maintainers | kemitchell |

## Links

- npm: https://www.npmjs.com/package/bcrypt-password
- Repository: https://github.com/kemitchell/bcrypt-password.js
- Homepage: https://github.com/kemitchell/bcrypt-password.js#readme
- Issues: https://github.com/kemitchell/bcrypt-password.js/issues
- npm.io page: https://npm.io/package/bcrypt-password

## Dependencies (1)

- [bcrypt](https://npm.io/package/bcrypt.md) ^3.0.6

## Recent versions

- 2.0.0 (latest) — 2019-07-02
- 1.0.2 — 2015-02-07
- 1.0.1 — 2015-02-01

## README

bcrypt-password.js
==================

Convenience package exporting password hashing and checking functions recommended by [bcrypt][bcrypt].

```javascript
var password = require('bcrypt-password')

var secret = 'open sesame'
password.hash(secret, function (error, digest) {
  password.check(secret, digest, function (error, match) {
    // ...
  })
})
```

[bcrypt]: https://www.npmjs.com/package/bcrypt

---
_Source: https://npm.io/package/bcrypt-password · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
