bcryption
Version:
Bcryption is a simple digital encription algorithm, is stable for javascript
56 lines (41 loc) • 960 B
Markdown
with `npm` you can require this library from JavaScript:
JavaScript
```js
const bcryption = require("bcryption");
```
Example for encripting a password
```js
const bcryption = require("bcryption");
bcryption
.hash(
"hailemelekot12345", // password
"Secret" //Secret from your .env variable
)
.then((res) => {
console.log(res); //set res to database, that is encripted password
});
```
---
Example for verifying a password
```js
const bcryption = require("bcryption");
bcryption
.verify(
"hailemelekot12345", // password
"04570b03002a03c4983a", // generated hex. may be from your database
"Secret" //Secret from your .env variable
)
.then((res) => {
console.log(res);
// Return true or false
});
```
```
You can contact me at:-
Email: Hailemelekotmelakie1991@gmail.com
```
```bash
$ npm install bcryption
```
After installing