@ilihub/cryptography
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

@ilihub/cryptography

A collection of useful TypeScript functions and utilities for cryptography.

NPM Version NPM CodeFactor Socket Badge

Installation

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

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

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

Usage

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

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


Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.3
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.3
    2
  • 1.0.2
    1
  • 1.0.1
    1
  • 1.0.0
    1

Package Sidebar

Install

npm i @ilihub/cryptography

Homepage

ilihub.tech

Weekly Downloads

5

Version

1.0.3

License

MIT

Unpacked Size

4.84 kB

Total Files

5

Last publish

Collaborators

  • harshraj8843