Skip to content

Typescript prototype of Simple KERI for Web Apps

License

Notifications You must be signed in to change notification settings

m00sey/signify-ts

 
 

Repository files navigation

TypeScript implementation of Signify

Project Name: signify-ts

TypeScript Tests codecov Documentation

Signify - KERI Signing at the Edge

Of the five functions in a KERI agent,

  1. Key generation
  2. Encrypted key storage
  3. Event generation
  4. Event signing
  5. Event Validation

Signify-TS splits off two, key generation and event signing into a TypeScript library to provide "signing at the edge". It accomplishes this by using libsodium to generate ed25519 key pairs for signing and x25519 key pairs for encrypting the private keys, next public keys and salts used to generate the private keys. The encrypted private key and salts are then stored on a remote cloud agent that never has access to the decryption keys. New key pair sets (current and next) will be generated for inception and rotation events with only the public keys and blake3 hash of the next keys made available to the agent.

The communication protocol between a Signify client and KERI agent will encode all cryptographic primitives as CESR base64 encoded strings for the initial implementation. Support for binary CESR can be added in the future.

Environment Setup

The code is built using Typescript and running code locally requires a Mac or Linux OS.

  • Install Node.js

  • Install dependencies:

    npm install

Account Creation Workflow

Account Creation

Account Creation Webpage

About

Typescript prototype of Simple KERI for Web Apps

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 99.7%
  • Mermaid 0.3%