
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
@ilihub/caesar-cipher
Advanced tools
Typescript functions for performing Caesar Cipher encryption and decryption.
Typescript functions for performing Caesar Cipher encryption and decryption.
# if you're using pnpm
pnpm add @ilihub/caesar-cipher
# or, if you're using npm
npm install @ilihub/caesar-cipher
# or, if you're using yarn
yarn add @ilihub/caesar-cipher
import { CaesarCipher } from "@ilihub/caesar-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', ... ]
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.
FAQs
Typescript functions for performing Caesar Cipher encryption and decryption.
The npm package @ilihub/caesar-cipher receives a total of 0 weekly downloads. As such, @ilihub/caesar-cipher popularity was classified as not popular.
We found that @ilihub/caesar-cipher demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.