@ilihub/cryptography
A collection of useful TypeScript functions and utilities for cryptography.

Installation
pnpm add @ilihub/cryptography
npm install @ilihub/cryptography
yarn add @ilihub/cryptography
Usage
import { CaesarCipher } from "@ilihub/cryptography";
const caesarCipher = new CaesarCipher();
const encrypted = caesarCipher.encrypt("Hello World", 3);
console.log(encrypted);
const decrypted = caesarCipher.decrypt(encrypted, 3);
console.log(decrypted);
const alldecrypted = caesarCipher.decryptAll(encrypted);
console.log(alldecrypted);
Available Functions and Classes
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.
