# crypjs

> simple aes-256-cbc encryption and decryption

Latest version **1.0.0** (published 2019-06-21) · MIT license · 0 weekly downloads

## Install

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

## 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.0 |
| Published | 2019-06-21 |
| First published | 2019-06-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | TCWTEAM |
| Maintainers | ehxohd |
| Keywords | encryption, aes, simple |

## Links

- npm: https://www.npmjs.com/package/crypjs
- Repository: https://github.com/tcwteam/crypjs
- Homepage: https://github.com/tcwteam/crypjs#readme
- Issues: https://github.com/tcwteam/crypjs/issues
- npm.io page: https://npm.io/package/crypjs

## Alternatives

- [@gemini-wallet/core](https://npm.io/package/@gemini-wallet/core.md) — 515.6K weekly downloads
- [utility](https://npm.io/package/utility.md) — 416.6K weekly downloads
- [@primno/dpapi](https://npm.io/package/@primno/dpapi.md) — 7.2K weekly downloads
- [pi-readseek](https://npm.io/package/pi-readseek.md) — 3.7K weekly downloads
- [@emilia-protocol/verify](https://npm.io/package/@emilia-protocol/verify.md) — 1.1K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2019-06-21

## README

# CrypJS
🔒 Extremely Simple AES-256-CBC Encryption And Decryption

## Install
```
npm install --save crypjs
```

## Example
```
const crypjs = require('crypjs')

let string = "hi"

//has to be a 32 character string
let password = "arandom32bitstring39239483483498"

let encryptedstring = crypjs.encrypt(string, password)
//output = 8c87ea9d402d106803455c0108a23b4a:ad548494a73119d254791efef8c08d07

let decryptedstring = crypjs.decrypt(encryptedstring, password)
//output = hi
```

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