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 🙏

© 2024 – Pkg Stats / Ryan Hefner

crypto-subtle-shield

v1.1.0

Published

CryptoSubtleShield is a Node.js library for easy encryption and decryption using various algorithms. It provides a convenient interface to Node.js's built-in crypto module and offers additional features for enhanced control and security.

Downloads

13

Readme

CryptoSubtleShield 🛡️

CryptoSubtleShield is a Node.js library for easy encryption and decryption using various algorithms. It provides a convenient interface to Node.js's built-in crypto module and offers additional features for enhanced control and security.

Table of Contents

Features

  • 🚀 Encrypt and decrypt text.
  • 📁 Encrypt and decrypt files.
  • 🔐 Supports multiple encryption algorithms (AES-CBC, AES-GCM).
  • 🛠️ Customizable encryption options.
  • 🔑 Uses PBKDF2 for key derivation.
  • ⚙️ Options for key length, tag length, encoding, and more. ...

Installation

To install CryptoSubtleShield, use npm, yarn or bun:

npm install crypto-subtle-shield
yarn add crypto-subtle-shield
bun add crypto-subtle-shield

Usage

Initialization

// CommonJS
const CryptoSubtleShield = require("crypto-subtle-shield");
const cryptoShield = new CryptoSubtleShield();

// ESM
import CryptoSubtleShield from "crypto-subtle-shield";
const cryptoShield = new CryptoSubtleShield();

Setting the Secret Key

const secretKey = "my-secret-key";

// Set the key while initialize
const cryptoShield = new CryptoSubtleShield({ secretKey });

// OR

// Add secretKey after initialize it.
const cryptoShield = new CryptoShield();
cryptoShield.setSecretKey(secretKey);

// OR

// pass secretKey while encrypting or decrypting
await cryptoShield.encryptText(text, "your-secret-key");

Basic Usage

CommonJS

const CryptoSubtleShield = require("crypto-subtle-shield");

const cryptoShield = new CryptoSubtleShield();

const plaintext = "Hello, CryptoSubtleShield!";
const encryptedText = await cryptoShield.encryptText(
  plaintext,
  "your-secret-key"
);
console.log("Encrypted:", encryptedText);

const decryptedText = await cryptoShield.decryptText(
  encryptedText,
  "your-secret-key"
);
console.log("Decrypted:", decryptedText);

ES6 Module

import CryptoSubtleShield from "crypto-subtle-shield";

const cryptoShield = new CryptoSubtleShield();

cryptoShield.setSecretKey("your-secret-key");

const plaintext = "Hello, CryptoSubtleShield!";
const encryptedText = await cryptoShield.encryptText(plaintext);
console.log("Encrypted:", encryptedText);

const decryptedText = await cryptoShield.decryptText(encryptedText);
console.log("Decrypted:", decryptedText);

File Encryption

CommonJS

const CryptoSubtleShield = require("crypto-subtle-shield");

const secretKey = "your-secret-key";

const cryptoShield = new CryptoSubtleShield({ secretKey });

const inputFile = "path/to/your/file.txt";
const encryptedFile = "path/to/your/encrypted/file.txt";

await cryptoShield.encryptFile(inputFile, encryptedFile);
console.log("File Encrypted:", encryptedFile);

const decryptedFile = "path/to/your/decrypted/file.txt";
await cryptoShield.decryptFile(encryptedFile, decryptedFile);
console.log("File Decrypted:", decryptedFile);

ES6 Module

import CryptoSubtleShield from "crypto-subtle-shield";

const cryptoShield = new CryptoSubtleShield();

const inputFile = "path/to/your/file.txt";
const encryptedFile = "path/to/your/encrypted/file.txt";

await cryptoShield.encryptFile(inputFile, encryptedFile, "your-secret-key");
console.log("File Encrypted:", encryptedFile);

const decryptedFile = "path/to/your/decrypted/file.txt";
await cryptoShield.decryptFile(encryptedFile, decryptedFile, "your-secret-key");
console.log("File Decrypted:", decryptedFile);

API Documentation

CryptoSubtleShield(options)

Creates a new instance of CryptoSubtleShield.

setSecretKey(secretKey)

Sets the secret key for encryption and decryption.

  • secretKey: The secret key to set.

setAlgorithm(algorithm, keyLength)

Sets the encryption algorithm and key length.

  • algorithm: The encryption algorithm (AES-CBC or AES-GCM).
  • keyLength: The key length (128, 192, or 256).

encryptText(text, secret?)

Encrypts a text string.

  • text: The text to encrypt.
  • secret (optional): The secret key. If not provided, the instance's secret key is used.

Returns a Promise that resolves to the encrypted text.

decryptText(encryptedText, secret?)

Decrypts an encrypted text string.

  • encryptedText: The text to decrypt.
  • secret (optional): The secret key. If not provided, the instance's secret key is used.

Returns a Promise that resolves to the decrypted text.

encryptFile(inputFilePath, outputFilePath?, secret?)

Encrypts a file.

  • inputFilePath: The path to the input file.
  • outputFilePath (optional): The path to the output file. If not provided, the input file is overwritten.
  • secret (optional): The secret key. If not provided, the instance's secret key is used.

Returns a Promise that resolves when the file is successfully encrypted.

decryptFile(encryptedFilePath, outputFilePath?, secret?)

Decrypts an encrypted file.

  • encryptedFilePath: The path to the encrypted file.
  • outputFilePath (optional): The path to the output file. If not provided, the decrypted file is overwritten.
  • secret (optional): The secret key. If not provided, the instance's secret key is used.

Returns a Promise that resolves when the file is successfully decrypted.

EncryptDecryptOptions

An object with configuration options for CryptoSubtleShield.

  • algorithm (optional): The encryption algorithm (AES-CBC or AES-GCM). Default is AES-GCM.
  • secretKey (optional): The secret key for encryption and decryption. If not provided, it must be set later using setSecretKey.
  • keyUsages (optional): An array of key usages (encrypt, decrypt, etc.). Default is ['encrypt', 'decrypt'].
  • extractable (optional): Whether the key should be extractable. Default is false.
  • keyType (optional): The type of key to import. Default is 'raw'.
  • keyLength (optional): The key length (128, 192, or 256). Default is 256.
  • tagLength (optional): The tag length for authentication (32, 64, or 128). Default is 128.
  • encoding (optional): The encoding for text conversion. Default is 'hex'.
  • iterations (optional): The number of iterations

for PBKDF2 key derivation. Default is 1000.

  • salt (optional): The length of the salt for PBKDF2 key derivation. Default is 16.

License

This project is licensed under the MIT License - see the LICENSE file for details.