# @meteorjs/crypto-browserify

> implementation of crypto for the browser

Latest version **3.12.4** (published 2025-04-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install @meteorjs/crypto-browserify
pnpm add @meteorjs/crypto-browserify
yarn add @meteorjs/crypto-browserify
bun add @meteorjs/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.4 |
| Published | 2025-04-10 |
| First published | 2024-04-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 0.10 |
| Dependencies | 12 |
| Unpacked size | 55 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 681 |
| Author | Dominic Tarr |
| Maintainers | mdg, denyhs, fredmaiaarantes, gywem, hschmaiske, leonardoventurini |

## Links

- npm: https://www.npmjs.com/package/@meteorjs/crypto-browserify
- Repository: https://github.com/browserify/crypto-browserify
- Homepage: https://github.com/meteor-compat/crypto-browserify
- Issues: https://github.com/browserify/crypto-browserify/issues
- Funding: https://github.com/sponsors/ljharb
- npm.io page: https://npm.io/package/@meteorjs/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-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-cipher](https://npm.io/package/browserify-cipher.md) ^1.0.1
- [@meteorjs/create-ecdh](https://npm.io/package/@meteorjs/create-ecdh.md) ^4.0.4
- [@meteorjs/browserify-sign](https://npm.io/package/@meteorjs/browserify-sign.md) ^4.2.3

## Recent versions

- 3.12.4 (latest) — 2025-04-10
- 3.12.3 — 2025-04-09
- 3.12.2 — 2025-03-31
- 3.12.1 — 2024-04-01

## README

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

> Meteor Compat fork to keep dependencies updated for our own packages. Currently used inside `meteor-node-stubs`

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/@meteorjs/crypto-browserify · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
