Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@eotl/simple-signed-records

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eotl/simple-signed-records

Minimal cryptographic identity and content verification for decentralized apps

  • 0.1.1
  • npm
  • Socket score

Version published
Weekly downloads
13
increased by1200%
Maintainers
0
Weekly downloads
 
Created
Source

Simple Signed Records JS

Install

$ yarn add tweetnacl-util
$ yarn add simple-signed-records

For basic functionality, include the SSR modules in your code:

import { decodeBase64, encodeBase64 } from 'tweetnacl-util'
import { ssr } from 'simple-signed-records'

Identity

To offer user-friendly identity functionality (via a "seed phrase"), you should also expose the ssrIdentity method.

import { ssr, ssrIdentity } from 'simple-signed-records'

To create new account keys, do the following

const identity = ssrIdentity.createIdentity()

To restore an account from 16 word seed, do the following

const identity = ssrIdentity.restoreIdentity(words)

Signing Records

To create a SSR use the following code

const record = { ... }
const validSeconds = 15778800
let secretKey = decodeBase64(secretKey)
let publicKey = decodeBase64(publicKey)

let signedData = ssr.sign({
    record,
    keypair: { secretKey, publicKey },
    validSeconds,
});

Verifying Records

Tbw...

Identity Certificate

To generate a certificate for GET requests, use the following

const certificate = ssrIdentity.generateCert(identity);

Keywords

FAQs

Package last updated on 30 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc