Skip to content

Latest commit

 

History

History
27 lines (25 loc) · 409 Bytes

README.md

File metadata and controls

27 lines (25 loc) · 409 Bytes

vigenere

Encrypt/Decrypt string with key using Vigenère cipher

Usage

Using vigenere is really simple. Below is how program read parameters:

vigenere <command> [input] [key]

Encrypt

To encrypt use command e:

vigenere e "Hello" "Key"

The output should be:

Rijvs

Decrypt

To decrypt use command d:

vigenere d "Diqd" "Key"

The output should be:

Test