# secretify

> Encrypt/Decrypt String/Array/Object with AES.

Latest version **0.1.4** (published 2021-10-11) · MIT license · 0 weekly downloads

## Install

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

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.4 |
| Published | 2021-10-11 |
| First published | 2021-08-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | eisen.yang@gmail.com |
| Maintainers | eisenyang |
| Keywords | secretify, secret, object, array, string, encrypt, decrypt, password |

## Links

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

## 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

- 0.1.4 (latest) — 2021-10-11
- 0.1.3 — 2021-09-08
- 0.1.2 — 2021-09-08
- 0.1.1 — 2021-08-24
- 0.1.0 — 2021-08-24

## README

# Secretify
Encrypt/Decrypt String/Array/Object.

## Usage
```
import Secretify from "secretify";

const plainObject = {
    bankAccount: 1122334455667788,
    bankPassword: '12345678'
};

const password = '87654321';
const secret = Secretify.seal(plainObject, password);
console.log(secret);

const decryptObjet = Secretify.unseal(secret, password, Object.keys(plainObject));
console.log(decryptObjet);
```
##

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