# crypto-aes192

> Simple encrypt and decrypt tool for generate hash string

Latest version **1.0.3** (published 2017-09-08) · MIT license · 0 weekly downloads

## Install

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

## 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.3 |
| Published | 2017-09-08 |
| First published | 2017-09-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Marshall Chan |
| Maintainers | yahoohung |

## Links

- npm: https://www.npmjs.com/package/crypto-aes192
- npm.io page: https://npm.io/package/crypto-aes192

## Recent versions

- 1.0.3 (latest) — 2017-09-08
- 1.0.1 — 2017-09-08
- 1.0.0 — 2017-09-08

## README

# crypto-aes192
Simple encrypt and decrypt tool for generate hash string

## Installation
npm i crypto-aes192

## Usage
```
const password = 'abcde12345';
const cryptoAes192 = require('crypto-aes192')(password);

let test = "marshall"
let e = cryptoAes192.encrypt(test);
let d = cryptoAes192.decrypt(e);
console.log(test, e, d);
```

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