npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

simple-encrypt-decrypt-cipher

v1.1.1

Published

a simple data encryptor using character shifting and character mixing

Downloads

15

Readme

Simple Encrypt Decrypt Cipher

A simple and lightweight library for encrypting and decrypting data using character shifting and character mixing. Designed for basic data protection needs with easy-to-use methods for string encryption and decryption.

Features

  • Character Shifting Encryption: Encrypt strings by shifting character codes.
  • Password-based Encryption: Enhanced security by mixing input with a password.
  • Simple API: Easy-to-use methods for encrypting and decrypting.
  • TypeScript Support: Includes type definitions for strong typing.

Installation

Install the package via npm:

npm install simple-encrypt-decrypt-cipher

Usage

Importing the Library

JavaScript (ESM):

import SimpleCrypto from 'simple-encrypt-decrypt-cipher';

TypeScript:

import SimpleCrypto from 'simple-encrypt-decrypt-cipher';

Basic Encryption and Decryption

const crypto = new SimpleCrypto('Hello, World!');

// Encrypt with character shifting
const encrypted = crypto.encrypt(3); // Shift characters by 3
console.log(encrypted);

// Decrypt with the same shift value
const decrypted = crypto.decrypt(3);
console.log(decrypted); // Outputs: 'Hello, World!'

Password-based Encryption

const crypto = new SimpleCrypto('Sensitive Data');

// Encrypt with a password
const encrypted = crypto.encryptWithPassword('mySecretPassword');
console.log(encrypted);

// Decrypt with the same password
const decrypted = crypto.decryptWithPassWord('mySecretPassword');
console.log(decrypted); // Outputs: 'Sensitive Data'

API Reference

Class: SimpleCrypto

Constructor

new SimpleCrypto(string?: string);
  • string: The input string to encrypt or decrypt (default: empty string).

Methods

  • encrypt(shiftAmount?: number): string

    • Encrypts the string using character shifting.
    • shiftAmount: Number of characters to shift (default: 1).
  • decrypt(shiftAmount?: number): string

    • Decrypts the string using character shifting.
    • shiftAmount: Number of characters to shift (default: -1).
  • encryptWithPassword(password: string, multiplier?: number): string

    • Encrypts the string using a password-based approach.
    • password: A string used as the encryption key.
    • multiplier: A number used to modify the password impact (default: 1).
  • decryptWithPassWord(password: string, multiplier?: number): string

    • Decrypts the string encrypted with encryptWithPassword.
    • password: A string used as the encryption key.
    • multiplier: A number used to modify the password impact (default: -1).

TypeScript Support

The package includes type definitions, enabling strong typing and IntelliSense in TypeScript projects.

import SimpleCrypto from 'simple-encrypt-decrypt-cipher';

const crypto = new SimpleCrypto('TypeScript Example');
const encrypted = crypto.encrypt(5);
const decrypted = crypto.decrypt(5);

Repository

Find the source code and contribute to the project: GitHub Repository

Issues

If you encounter any issues or have feature requests, please report them here: GitHub Issues

License

This project is licensed under the ISC License. See the LICENSE file for details.


Developed by Caller Studios