1.0.3 • Published 2 years ago

@ilihub/cipher v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@ilihub/cipher

A collection of useful cipher cryptography TypeScript functions.

NPM Version NPM CodeFactor Socket Badge

Installation

# if you're using pnpm
pnpm add @ilihub/cipher

# or, if you're using npm
npm install @ilihub/cipher

# or, if you're using yarn
yarn add @ilihub/cipher

Usage

import { CaesarCipher } from "@ilihub/cipher";

const caesarCipher = new CaesarCipher();

const encrypted = caesarCipher.encrypt("Hello World", 3);
console.log(encrypted); // Khoor Zruog

const decrypted = caesarCipher.decrypt(encrypted, 3);
console.log(decrypted); // Hello World

const alldecrypted = caesarCipher.decryptAll(encrypted);
console.log(alldecrypted); // [ 'Hello World', 'Gdkkn Vnqkc', ... ]

Available Functions and Classes


Sponsors & Backers

Support the development of new open-source projects from ilihub through crowdfunding.

The core of ilihub is our crowd-funded open-source projects, licensed under the permissive MIT license. Sponsorship increases the rate of bug fixes, documentation improvements, and feature development.

Sponsors