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

cryptosolve

v1.0.3

Published

A cryptographically secure 'scavenger hunt'-style library

Downloads

6

Readme

CryptoSolve

CryptoSolve is (meant to be) a cryptographically secure mechanism of guaranteeing a user successfully answering a set of questions with the correct answers in order to uncover a token. In simple terms, CryptoSolve has two parts - the 'host' creates a shareable JSON string and distributes it to 'clients' to crack. It's designed to be as fast as possible on the client end while having minimal configuration needed (both the shareable and client can be generated in one line each).

Also, I'm not a cryptography scientist, so please let me know if you discover any vulnerabilities in this.

Usage

JavaScript

// Generator
const { createShareable } = require('cryptosolve');
const qna = [
	['Question 1', 'Answer 1'],
	['Question 2', 'Answer 2'],
	['Question 3', 'Answer 3']
];

const shareJSON = createShareable(qna, 'success_token');


// Client
const { createClient } = require('cryptosolve');

const client = createClient(shareJSON);

client.success; // undefined
client.questions[0]; // Question 1
client.guess('Answer 1'); // true
client.questions[1]; // Question 2
client.guess('Answer 1'); // false
client.questions[2]; // undefined
client.guess('Answer 2'); // true
client.questions[2]; // Question 3
client.guess('Answer 3'); // true
client.length === client.questions.length; // true
client.success; // success_token

TypeScript

// Generator
import { createShareable } from 'cryptosolve';
const qna: [string, string][] = [
	['Question 1', 'Answer 1'],
	['Question 2', 'Answer 2'],
	['Question 3', 'Answer 3']
];

const shareJSON: string = createShareable(qna, 'success_token');


// Client
import { createClient } from 'cryptosolve';

const client = createClient(shareJSON);

client.success; // undefined
client.questions[0]; // Question 1
client.guess('Answer 1'); // true
client.questions[1]; // Question 2
client.guess('Answer 1'); // false
client.questions[2]; // undefined
client.guess('Answer 2'); // true
client.questions[2]; // Question 3
client.guess('Answer 3'); // true
client.length === client.questions.length; // true
client.success; // success_token

Installation and Requirements

CryptoSolve has zero external dependencies (the only dependency is node:crypto), and requires Node.js v6.4 or higher to run.

You can install CryptoSolve in your projects through npm install cryptosolve or yarn install cryptosolve, depending on your package manager.

Documentation

CryptoSolve exports a Utils object alongside createShareable and createClient with the encryption and key-generation algorithms. I'm too lazy to go and document those, but feel free to refer to the source code - it's fairly neat and tidy!

{
	createShareable (qna: [string, string][], success_token?: string, normalize?: 'id' | 'trim' | 'alphanumeric' | ((answer: string) => string)): string;
	createClient (shareJSON: string, normalize?: ((answer: string) => string)): string;
}

createShareable

createShareable is responsible for creating the distributable string for a CryptoSolve Client to solve. It takes the first argument as a list of question-solution pairs and the second as the output token to be displayed on successfully solving all questions. If the output is falsy, no output token is created.

For ease-of-solving, a normalizing feature has also been implemented. By default, answers are normalized to their IDs (lowercased, with all non-alphanumeric characters removed). You may specify 'trim' or 'alphanumeric' for the corresponding normalizing functions, or specify your own function. Do note that due to security reasons, if you provide your own custom normalizing function, you will have to independently distribute this to the clients.

createClient

createClient takes in the shareable JSON as a required parameter, and optionally lets the client set their normalizing function if the source shareable used a custom normalizer (see above). It returns a single instance of a CryptoSolve Client.

{
	questions: string[]; // List of all revealed questions
	answers: string[]; // List of all successfully-guessed answers
	length: number; // Total number of questions
	success?: string; // Success token; set only after solving all questions and if the generator specified one

	guess: (answer: string) => boolean; // Guesses an answer to continue. On a successful guess, the answer is pushed into the `answers` array, and (if possible) the next question is pushed into the `questions` array. Returns `true` for a correct guess and `false` for an incorrect one. Throws an error if already completed or another error occurs.
}

Algorithms and Methodology

CryptoSolver uses multi-encryption to asymmetrically and securely store questions, answers, and the success token.

  • Symmetric EncryptionCryptoSolver uses the AES-256-CBC cipher with a randomized IV (included in the shareable) for symmetric-key-based encryption.
  • Asymmetric EncryptionCryptoSolver uses AES-256-CBC algorithm with passphrase-enabled PKCS8 encryption on the key (I have no idea what these words mean but they are scary) for asymmetric encryption.
  • Composite EncryptionCryptoSolver then generates a symmetric key as well as a pair of asymmetric keys using the passphrase as the normalized answer to the current question, then uses the asymmetric keys to asymmetrically encrypt the symmetric key. The symmetric key is used to symmetrically encrypt the next question block (each block includes the question, the formatted previous answer, and the encrypted key for the following block).

In order to keep the encrypted values secure at every point while keeping client computation minimal, a sacrifice has been made on the scalability - the more question-answer pairs that you encrypt, the longer the final shareable JSON will be.

Shoutouts @aQrator for the inspiration!