3.1.3 • Published 10 months ago

vigenere-encoder v3.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

vigenere-encoder

Vigenere cipher encoder/decoder. (npm package)

Install

npm i vigenere-encoder

Use

import v from "vigenere-encoder"

Example

import v from "vigenere-encoder"

const text = "Hello, world!"
const key = "my key"

const cipherText = v.encode(text, key)
console.log(cipherText)

const plainText = v.decode(cipherText, key)
console.log(plainText)

output:

tcvpm, gsppj!
hello, world!
3.1.3

10 months ago

3.1.2

10 months ago

3.1.1

10 months ago

3.1.0

10 months ago

3.0.2

1 year ago

3.0.1

1 year ago

3.0.0

1 year ago

2.1.2

1 year ago

2.1.1

1 year ago

2.1.0

1 year ago

2.0.0

1 year ago

1.1.0

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago