# npm-vigenere-cipher

> Cipher and Decipher simple text

Latest version **1.0.4** (published 2020-04-15) · ISC license · 0 weekly downloads

## Install

```sh
npm install npm-vigenere-cipher
pnpm add npm-vigenere-cipher
yarn add npm-vigenere-cipher
bun add npm-vigenere-cipher
```

## 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.4 |
| Published | 2020-04-15 |
| First published | 2020-04-15 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | akbarakma |
| Maintainers | akbarakma |
| Keywords | vigenere, cipher, decipher |

## Links

- npm: https://www.npmjs.com/package/npm-vigenere-cipher
- Repository: https://github.com/akbarakma/npm-vigenere-cipher
- Homepage: https://github.com/akbarakma/npm-vigenere-cipher#readme
- Issues: https://github.com/akbarakma/npm-vigenere-cipher/issues
- npm.io page: https://npm.io/package/npm-vigenere-cipher

## 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.4 (latest) — 2020-04-15
- 1.0.3 — 2020-04-15
- 1.0.2 — 2020-04-15
- 1.0.1 — 2020-04-15
- 1.0.0 — 2020-04-15

## README

# npm-vigenere-cipher

npm-vigenere-cipher is a package to cipher and decipher a secret code using passphrase.

## Installation

Installation is done using the [npm install command](https://docs.npmjs.com/downloading-and-installing-packages-locally):

```bash
npm install npm-vigenere-cipher
```

## Usage

```python
const { cipher, decipher } = require('npm-vigenere-cipher');

const message = 'Secret Code.';
const passphrase = 'foobar';
const test = cipher(message, passphrase);
console.log(test);
  //expected output = xGEG4YTqQ44q
console.log(decipher(test, passphrase));
  //expected output = Secret Code
```

This package only support message and passphrase that contain alphabet, number, space, ".", and ","

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