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

secure-storify

v1.1.2

Published

**SecureStorify** is a library designed to enhance the security of web applications by providing encrypted browser storage functionality. It secures data in localStorage, sessionStorage, IndexedDB, and cache storage using the RSA (Rivest–Shamir–Adleman) e

Downloads

174

Readme

SecureStorify

SecureStorify is a library designed to enhance the security of web applications by providing encrypted browser storage functionality. It secures data in localStorage, sessionStorage, IndexedDB, and cache storage using the RSA (Rivest–Shamir–Adleman) encryption algorithm. This allows developers to securely store sensitive data without compromising security, offering peace of mind when handling private or sensitive user information.

With SecureStorify, data stored in the browser's storage systems is encrypted before being saved and automatically decrypted when retrieved. This makes it much harder for attackers to access or tamper with sensitive information stored on the client side.

Features

  • RSA Encryption: Asymmetric encryption used to securely exchange keys, adding an extra layer of security for key management.
  • Automatic Encryption & Decryption: Data is encrypted before being saved to browser storage and decrypted when fetched, ensuring the encryption process is seamless and transparent to the user.
  • Security Focused: Ensures that even if the browser storage is compromised, the stored data remains unintelligible without the encryption key.
  • Ease of Use: Developers can use this library with minimal changes to how they currently interact with browser storage.

How It Works

  1. Storing Data in Browser Storage:

    • When saving data to storage (localStorage, sessionStorage, IndexedDB, or cache), SecureStorify encrypts the data using the RSA algorithm.
    • The RSA algorithm is used to securely exchange keys, ensuring that the key itself is protected.
    • The encrypted data is then stored in the appropriate browser storage.
  2. Retrieving Data from Browser Storage:

    • When retrieving data, SecureStorify decrypts the data automatically using the RSA key.
    • The decrypted data is returned in its original form, allowing the application to use it as needed.

Algorithm Used

  • RSA (Rivest–Shamir–Adleman):
    An asymmetric encryption algorithm used for secure data transmission. In this project, RSA is primarily used to encrypt and securely exchange the keys, ensuring that sensitive data cannot be intercepted.

Benefits

  • Improved Security: Browser storage data is inherently insecure because it's stored in plaintext. SecureStorify ensures that even if a malicious actor accesses browser storage, they cannot read or manipulate sensitive data without the correct decryption key.

  • Easy Integration: SecureStorify is designed to function as a drop-in replacement for the standard browser storage API, allowing developers to enhance their web applications' security without rewriting existing code.

  • Data Privacy: Ideal for storing sensitive user data, such as tokens, user preferences, and other personal information, in compliance with privacy regulations and security best practices.

Installation

To install SecureStorify, run the following command:

npm install secure-storify

Importing

You can import SecureStorify into your project using the following statement:

import { secureStorify } from 'secure-storify';

Supported Storages

1. localStorage

Securely store and retrieve data in localStorage:

Set Encrypted Data:

secureStorify.localStorage.set('YourKey', 'YourValue');

Get Decrypted Data:

const value = secureStorify.localStorage.get('YourKey');

2. sessionStorage

Store session-based data in sessionStorage with encryption:

Set Encrypted Data:

secureStorify.sessionStorage.set('YourKey', 'YourValue');

Get Decrypted Data:

const value = secureStorify.sessionStorage.get('YourKey');

3. IndexedDB

Encrypt and store data in IndexedDB:

Set Encrypted Data:

secureStorify.indexedDB.set('YourDBName', 'YourStoreName', 'YourKey', 'YourValue');

Get Decrypted Data:

const value = secureStorify.indexedDB.get('YourDBName', 'YourStoreName', 'YourKey');

4. CacheStorage

Encrypt and cache data in CacheStorage:

Set Encrypted Data:

secureStorify.cacheStorage.set('YourCacheName', 'YourKey', 'YourValue');

Get Decrypted Data:

const value = secureStorify.cacheStorage.get('YourCacheName', 'YourKey');

Example Usage

Here’s a simple example demonstrating how to use SecureStorify with different storage systems:

localStorage

// Set encrypted data in localStorage
secureStorify.localStorage.set('userToken', '123456789');

// Get decrypted data from localStorage
const userToken = secureStorify.localStorage.get('userToken');
console.log(userToken);  // Output: 123456789

sessionStorage

// Set encrypted data in sessionStorage
secureStorify.sessionStorage.set('sessionID', 'abcd-1234');

// Get decrypted data from sessionStorage
const sessionID = secureStorify.sessionStorage.get('sessionID');
console.log(sessionID);  // Output: abcd-1234

IndexedDB

// Set encrypted data in IndexedDB
secureStorify.indexedDB.set('MyDatabase', 'MyStore', 'userID', '987654321');

// Get decrypted data from IndexedDB
const userID = secureStorify.indexedDB.get('MyDatabase', 'MyStore', 'userID');
userID.then(value => console.log(value));  // Output: 987654321

CacheStorage

// Set encrypted data in CacheStorage
secureStorify.cacheStorage.set('MyCache', 'cacheKey', 'cacheValue');

// Get decrypted data from CacheStorage
const cacheValue = secureStorify.cacheStorage.get('MyCache', 'cacheKey');
cacheValue.then(value => console.log(value));  // Output: cacheValue

Conclusion

SecureStorify offers a robust solution for securely managing sensitive data in various browser storage types. By utilizing RSA encryption, it ensures that your data remains protected, even in the event of a security breach. With its seamless integration into existing storage APIs, developers can easily enhance data security without extensive code changes, making it an essential tool for safeguarding user information.