# vigenere-encryption

> Cipher and decipher using vigenere cipher

Latest version **1.0.2** (published 2019-08-26) · ISC license · 0 weekly downloads

## Install

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

## 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.2 |
| Published | 2019-08-26 |
| First published | 2019-08-25 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 5.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Peter Luczynski |
| Maintainers | peterluczynski |

## Links

- npm: https://www.npmjs.com/package/vigenere-encryption
- npm.io page: https://npm.io/package/vigenere-encryption

## Recent versions

- 1.0.2 (latest) — 2019-08-26
- 1.0.1 — 2019-08-26
- 1.0.0 — 2019-08-25

## README

---
description: Npm package for encryption and decryption with vigenere cipher
---

# Vigenere Encryption

[link to github repo](https://github.com/peterluczynski/vigenere-encrypion)

## Installation

Type this in console to install this package:

```
$ npm i vigenere-encryption
```

{% hint style="info" %}
Keep in mind that this package is still work in progress
{% endhint %}

## Usage

Add the module to your javascript file

```javascript
const encryption = require("./node_modules/vigenere-encryption/index");
```

The function takes 3 parameters:

1. message \(message to encode\)
2. key \(the key to use\)
3. cipherIt \(If true it will encrypt if false it will decrypt\)

#### Example usage

```javascript
const encryption = require("./node_modules/vigenere-encryption/index");
console.log(encryption(message.value, key.value, false));
```

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