# acrypto

> Promise based version of Node.js `crypto` module which only includes `randomBytes` and `pbkdf2`.

Latest version **1.0.1** (published 2015-06-23) · Unlicense license · 0 weekly downloads

## Install

```sh
npm install acrypto
pnpm add acrypto
yarn add acrypto
bun add acrypto
```

## 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 | 1.0.1 |
| Published | 2015-06-23 |
| First published | 2015-06-23 |
| Weekly downloads | 0 |
| License | Unlicense |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | aluxian |

## Links

- npm: https://www.npmjs.com/package/acrypto
- Repository: https://github.com/aluxian/node-acrypto
- Issues: https://github.com/aluxian/node-acrypto/issues
- npm.io page: https://npm.io/package/acrypto

## Dependencies (1)

- [promise](https://npm.io/package/promise.md) ^7.0.3

## Recent versions

- 1.0.1 (latest) — 2015-06-23
- 1.0.0 — 2015-06-23

## README

# acrypto [![npm version](http://img.shields.io/npm/v/acrypto.svg?style=flat-square)](https://www.npmjs.org/package/acrypto)

> Promise based version of Node.js `crypto` module which only includes `randomBytes` and `pbkdf2`.

Example
-------

```js
import acrypto from 'acrypto'

async function () {
  const rand = await acrypto.randomBytes(16)
  rand.length // 16

  const pbkdf2 = await acrypto.pbkdf2('secret', 'salt', 256, 256, 'sha256')
  pbkdf2.toString('hex') // ...
}
```

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