# kc-aes256

> [nodejs] AES256 Encrypt/decrypt

Latest version **1.0.8** (published 2021-03-23) · ISC license · 0 weekly downloads

## Install

```sh
npm install kc-aes256
pnpm add kc-aes256
yarn add kc-aes256
bun add kc-aes256
```

## 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.8 |
| Published | 2021-03-23 |
| First published | 2020-07-10 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | KaisarCode |
| Maintainers | kaisarcode |
| Keywords | aes256, encrypt, decrypt |

## Links

- npm: https://www.npmjs.com/package/kc-aes256
- Repository: https://github.com/kaisarsnippets/node-aes256
- Issues: https://github.com/kaisarsnippets/node-aes256/issues
- npm.io page: https://npm.io/package/kc-aes256

## 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.8 (latest) — 2021-03-23
- 1.0.7 — 2020-12-22
- 1.0.6 — 2020-12-22
- 1.0.5 — 2020-12-22
- 1.0.4 — 2020-10-09
- 1.0.3 — 2020-10-09
- 1.0.2 — 2020-10-09
- 1.0.1 — 2020-07-16
- 1.0.0 — 2020-07-10

## README

# AES256
[nodejs] AES256 Encrypt/decrypt

### Install
```
npm install kc-aes256
```

### Use
```js
var aes = require('kc-aes256');
var key = '1234';
var txt = 'Dummy';
var cph = aes.encrypt(key, txt);
console.log(cph);
var dcph = aes.decrypt(key, cph);
console.log(dcph);
```

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