@ew-did-registry/keys
TypeScript icon, indicating that this package has built-in type declarations

0.9.0 • Public • Published

Keys Package

The keys package provides a clean and simple interface for the client and expose cryptographic operations based on asymmetric cryptography for secp256k1 ECDSA.

// If you don't have a key pair you can generate new Key Pair
const keys = Keys.generateKeyPair(); // builder

// If you have a private key you can instantiate the Keys with private key
const keys = new Keys({ privateKey: keys.privateKey });

// If you have a public key you can Instantiate the Keys with public key
const keys = new Keys({ publicKey: keys.publicKey });

// Sign and verify data. 
const data = "test";
const signature = keys.sign(data); // Doesn't work if you initiate the Keys with public key.
console.log(keys.verify(data, signature)); // true

/@ew-did-registry/keys/

    Package Sidebar

    Install

    npm i @ew-did-registry/keys

    Weekly Downloads

    228

    Version

    0.9.0

    License

    GPL-3.0-or-later

    Unpacked Size

    1.07 MB

    Total Files

    17

    Last publish

    Collaborators

    • energywebdev