# crypto-browserify

> implementation of crypto for the browser

Latest version **3.12.1** (published 2024-10-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install crypto-browserify
pnpm add crypto-browserify
yarn add crypto-browserify
bun add crypto-browserify
```

## Health

**Score 35/100 (D)** — status: stable.

Positive: no vulnerabilities.

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

Negative: stale.

## Facts

| | |
|---|---|
| Version | 3.12.1 |
| Published | 2024-10-22 |
| First published | 2012-04-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 0.10 |
| Dependencies | 12 |
| Unpacked size | 54.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 681 |
| Author | Dominic Tarr |
| Maintainers | dcousens, ljharb, cwmma, indutny, jprichardson |

## Links

- npm: https://www.npmjs.com/package/crypto-browserify
- Repository: https://github.com/browserify/crypto-browserify
- Issues: https://github.com/browserify/crypto-browserify/issues
- Funding: https://github.com/sponsors/ljharb
- npm.io page: https://npm.io/package/crypto-browserify

## Dependencies (12)

- [pbkdf2](https://npm.io/package/pbkdf2.md) ^3.1.2
- [inherits](https://npm.io/package/inherits.md) ^2.0.4
- [hash-base](https://npm.io/package/hash-base.md) ~3.0.4
- [randomfill](https://npm.io/package/randomfill.md) ^1.0.4
- [create-ecdh](https://npm.io/package/create-ecdh.md) ^4.0.4
- [create-hash](https://npm.io/package/create-hash.md) ^1.2.0
- [create-hmac](https://npm.io/package/create-hmac.md) ^1.1.7
- [randombytes](https://npm.io/package/randombytes.md) ^2.1.0
- [diffie-hellman](https://npm.io/package/diffie-hellman.md) ^5.0.3
- [public-encrypt](https://npm.io/package/public-encrypt.md) ^4.0.3
- [browserify-sign](https://npm.io/package/browserify-sign.md) ^4.2.3
- [browserify-cipher](https://npm.io/package/browserify-cipher.md) ^1.0.1

## Recent versions

- 3.12.1 (latest) — 2024-10-22
- 3.12.0 — 2017-11-03
- 3.11.1 — 2017-07-11
- 3.11.0 — 2015-11-03
- 3.10.0 — 2015-09-27
- 3.9.14 — 2015-04-16
- 3.9.13 — 2015-02-23
- 3.9.12 — 2015-02-02
- 3.9.11 — 2015-01-29
- 3.9.10 — 2015-01-26
- 3.9.9 — 2015-01-21
- 3.9.8 — 2015-01-20
- 3.9.7 — 2015-01-19
- 3.9.6 — 2015-01-14
- 3.9.4 — 2015-01-12
- … 61 more at https://npm.io/package/crypto-browserify/versions

## README

# crypto-browserify <sup>[![Version Badge][npm-version-svg]][package-url]</sup>

A port of node's `crypto` module to the browser.

[![github actions][actions-image]][actions-url]
[![coverage][codecov-image]][codecov-url]
[![License][license-image]][license-url]
[![Downloads][downloads-image]][downloads-url]
[![Sauce Test Status](https://saucelabs.com/browser-matrix/crypto-browserify.svg)](https://saucelabs.com/u/crypto-browserify)

[![npm badge][npm-badge-png]][package-url]

The goal of this module is to reimplement node's crypto module, in pure javascript so that it can run in the browser.

Here is the subset that is currently implemented:

* createHash (sha1, sha224, sha256, sha384, sha512, md5, rmd160)
* createHmac (sha1, sha224, sha256, sha384, sha512, md5, rmd160)
* pbkdf2
* pbkdf2Sync
* randomBytes
* pseudoRandomBytes
* createCipher (aes)
* createDecipher (aes)
* createDiffieHellman
* createSign (rsa, ecdsa)
* createVerify (rsa, ecdsa)
* createECDH (secp256k1)
* publicEncrypt/privateDecrypt (rsa)
* privateEncrypt/publicDecrypt (rsa)

## todo

these features from node's `crypto` are still unimplemented.

* createCredentials

## contributions

If you are interested in writing a feature, please implement as a new module,
which will be incorporated into crypto-browserify as a dependency.

All deps must be compatible with node's crypto
(generate example inputs and outputs with node, and save base64 strings inside JSON, so that tests can run in the browser)
see [sha.js](https://github.com/dominictarr/sha.js)

Crypto is _extra serious_ so please do not hesitate to review the code, and post comments if you do.

## License

MIT

[package-url]: https://npmjs.org/package/crypto-browserify
[npm-version-svg]: https://versionbadg.es/browserify/crypto-browserify.svg
[deps-svg]: https://david-dm.org/browserify/crypto-browserify.svg
[deps-url]: https://david-dm.org/browserify/crypto-browserify
[dev-deps-svg]: https://david-dm.org/browserify/crypto-browserify/dev-status.svg
[dev-deps-url]: https://david-dm.org/browserify/crypto-browserify#info=devDependencies
[npm-badge-png]: https://nodei.co/npm/crypto-browserify.png?downloads=true&stars=true
[license-image]: https://img.shields.io/npm/l/crypto-browserify.svg
[license-url]: LICENSE
[downloads-image]: https://img.shields.io/npm/dm/crypto-browserify.svg
[downloads-url]: https://npm-stat.com/charts.html?package=crypto-browserify
[codecov-image]: https://codecov.io/gh/browserify/crypto-browserify/branch/main/graphs/badge.svg
[codecov-url]: https://app.codecov.io/gh/browserify/crypto-browserify/
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/browserify/crypto-browserify
[actions-url]: https://github.com/browserify/crypto-browserify/actions

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