vo21-module

1.0.0 • Public • Published

vo21-module

A Node.js module for simple Caesar cipher encryption and decryption.

Installation

You can install this module via npm: npm install vo21-module

Usage

const cipherio = require('cipherio');

// Encrypt text with a shift of 3
const encryptedText = cipherio.encryptText('Hello, World!', 3);
console.log(encryptedText); // Output: Khoor, Zruog!

// Decrypt text with a shift of 3
const decryptedText = cipherio.decryptText('Khoor, Zruog!', 3);
console.log(decryptedText); // Output: Hello, World!

Readme

Keywords

none

Package Sidebar

Install

npm i vo21-module

Weekly Downloads

2

Version

1.0.0

License

ISC

Unpacked Size

1.98 kB

Total Files

3

Last publish

Collaborators

  • vo219348