🔐 SlayOps Demo

Simple JavaScript API for OpenPGP operations via LocalPGP extension

Not Connected

Key Management

Connect and search for keys

Encrypt

Decrypt

Sign

Verify

About SlayOps

SlayOps is a simple JavaScript library that provides an easy-to-use API for OpenPGP operations via the LocalPGP browser extension.

Just include slayops.js and use the simple API - no need to understand extension messaging or browser differences.

Usage:
const pgp = new SlayOps.SlayOps();
await pgp.connect();
const keys = await pgp.getKeys();
const encrypted = await pgp.encrypt('Hello', [keys[0].fingerprint]);