anproto -- authenticated non-networked protocol or another proto sha256 blobs signed with ed25519 keypairs anproto.com
ed25519 social protocols
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 40cbe82cc47a020e62bfe8d701a5ef7527639981 12 lines 234 B view raw
1import { an } from "./an.js"; 2 3const m = "Hello World"; 4const h = await an.hash(m); 5const k = await an.gen(); 6const s = await an.sign(m, k); 7const o = await an.open(s); 8 9console.log(k); 10console.log(h); 11console.log(s); 12console.log(o);