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

cryptribo

v0.1.4

Published

A ready to use library including the emurgo wasm for Cardano and a set of utilities to encrypt, decrypt, sign and verify anything using native wasm

Downloads

7

Readme

CryptRibo - Cardano All in one crypto package for both browser and nodejs.

This package wraps the version of Emurgo cardano-serialization-lib for both browsers and nodejs, taking out this pain from you.

This tool can be used to create wallets using the same dependencies on both environments, but we've also exposed a version of the package in a cdn, backed by cloudflare Here.

Package specification

import * as t from "@emurgo/cardano-serialization-lib-[nodejs or browser]/cardano_serialization_lib";
interface Payload {
  [name: string]: any;
}
export declare const expose: () => Promise<typeof t>;
export declare function mnemonicToRootKeyPair(
  mnemonic: string
): Promise<t.PrivateKey>;
export declare function encryptWithPin(
  payload: Payload,
  pin: string
): Promise<string>;
export declare function decryptWithPin(
  payload: string,
  pin: string
): Promise<Payload>;
export declare function createKeyPair(hash: string): Promise<t.PrivateKey>;
export declare function randomPin(n2?: string): Promise<string>;
export declare function signBuffer(
  msg: Buffer,
  privKey: t.PrivateKey
): Promise<t.Ed25519Signature>;
export declare function verifyBuffer(
  msg: Buffer,
  pubKey: t.PublicKey,
  signature: t.Ed25519Signature
): Promise<boolean>;
export {};

Core features

  1. EncryptWithPin: a built in tool to encrypt a buffer using cardano primitives from emurgo wasm.
  2. DecryptWithPin: a build in tool to decrypt the same encrypted buffers from previous method.
  3. signBuffer: allows you to sign a document using a Cardano private key.
  4. verifyBuffer: allows you to verify with your publicKey if the signature of a buffer is valid

How to use

  1. From a CDN Plug and play solution, start playing with this package in simple vanila code.
<script src="https://jribo.kiwi/index.js"></script>
<script>
  (async () => {
    const text = `Texto`;
    const mnemonic =
      "logic easily waste eager injury oval sentence wine bomb embrace gossip supreme";
    const pin = "123456";

    const textBuffer = Buffer.from(text);
    const encrypted = await window.cryptribo.encryptWithPin(
      { body: text },
      pin
    );
    const decrypted = await window.cryptribo.decryptWithPin(encrypted, pin);

    const privateKey = await window.cryptribo.mnemonicToRootKeyPair(mnemonic);
    const publicKey = privateKey.to_public();

    const signed = await window.cryptribo.signBuffer(textBuffer, privateKey);
    const verified = await window.cryptribo.verifyBuffer(
      textBuffer,
      publicKey,
      signed
    );

    console.log(verified, decrypted);
  })();
</script>
  1. Include the library in your project
  • If you use esModules in your package (modern nodejs versions)
import cryptribo from "cryptribo/browser";
  • If you use cjs (require) in your package (older nodejs versions)
const cryptribo = require("cryptribo/browser");
  1. Nodejs packages
  • If you use esModules in your package (modern nodejs versions)
import cryptribo from "cryptribo/node";
  • If you use cjs (require) in your package (older nodejs versions)
const cryptribo = require("cryptribo/node");

Usage

Simple example of, encrypting and decrypting data using primitives and how to restore the private key from bip39 mnemonics and allow the user to sign and verify a message using this public and private key.

(async () => {
  try {
    const text = `Texto`;
    const mnemonic =
      "logic easily waste eager injury oval sentence wine bomb embrace gossip supreme";
    const pin = "123456";

    const textBuffer = Buffer.from(text);
    const encrypted = await cryptribo.encryptWithPin({ body: text }, pin);
    const decrypted = await cryptribo.decryptWithPin(encrypted, pin);

    const privateKey = await cryptribo.mnemonicToRootKeyPair(mnemonic);
    const publicKey = privateKey.to_public();

    const signed = await cryptribo.signBuffer(textBuffer, privateKey);
    const verified = await cryptribo.verifyBuffer(
      textBuffer,
      publicKey,
      signed
    );

    console.log(verified, decrypted);
  } catch (err) {
    console.log(err);
  }
})();