-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
615 lines (548 loc) · 36.9 KB
/
Copy pathindex.html
File metadata and controls
615 lines (548 loc) · 36.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MOSS — Know exactly which agent produced what</title>
<meta name="description" content="MOSS signs every agent output — verifiable, tamper-proof, reproducible. Post-quantum secure.">
<meta name="keywords" content="AI agents, agent identity, signing, cryptography, post-quantum, CrewAI, AutoGen, LangGraph">
<link rel="canonical" href="https://mosscomputing.com">
<meta property="og:title" content="MOSS — Know exactly which agent produced what">
<meta property="og:description" content="MOSS signs every agent output — verifiable, tamper-proof, reproducible.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://mosscomputing.com">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="MOSS Protocol">
<meta name="twitter:description" content="Know exactly which agent produced what.">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect fill='%2318181b' width='100' height='100' rx='12'/><text x='50' y='68' font-family='monospace' font-size='60' fill='%23a1a1aa' text-anchor='middle'>m</text></svg>">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
zinc: {
950: '#09090b',
900: '#18181b',
800: '#27272a',
700: '#3f3f46',
600: '#52525b',
500: '#71717a',
400: '#a1a1aa',
300: '#d4d4d8',
}
}
}
}
}
</script>
<script src="https://unpkg.com/react@18/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<style>
body { background-color: #09090b; }
* { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif; }
code, pre, .mono { font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Monaco, Consolas, monospace; }
</style>
</head>
<body>
<div id="root"></div>
<script type="text/babel">
const { useState } = React;
const CopyButton = ({ text }) => {
const [copied, setCopied] = useState(false);
const handleCopy = () => {
navigator.clipboard.writeText(text).then(() => {
setCopied(true);
setTimeout(() => setCopied(false), 1500);
});
};
return (
<button onClick={handleCopy} className="px-2 py-1 text-xs mono bg-zinc-800 hover:bg-zinc-700 text-zinc-400 rounded border border-zinc-700 transition-colors">
{copied ? 'Copied' : 'Copy'}
</button>
);
};
const InlineCopy = ({ text }) => {
const [copied, setCopied] = useState(false);
const handleCopy = () => {
navigator.clipboard.writeText(text).then(() => {
setCopied(true);
setTimeout(() => setCopied(false), 1500);
});
};
return (
<div className="flex items-center justify-between bg-zinc-900 border border-zinc-800 rounded px-3 py-2 group">
<code className="mono text-sm text-zinc-300">{text}</code>
<button onClick={handleCopy} className="px-2 py-0.5 text-xs mono bg-zinc-800 hover:bg-zinc-700 text-zinc-500 rounded border border-zinc-700 transition-colors opacity-0 group-hover:opacity-100">
{copied ? '✓' : 'Copy'}
</button>
</div>
);
};
const CodeBlock = ({ code }) => (
<div className="relative group">
<pre className="bg-zinc-900 p-4 rounded-lg text-sm mono overflow-x-auto border border-zinc-800 text-zinc-300">{code}</pre>
<div className="absolute top-2 right-2 opacity-0 group-hover:opacity-100 transition-opacity">
<CopyButton text={code} />
</div>
</div>
);
const generateHash = (data) => {
const str = JSON.stringify(data);
let hash = 0;
for (let i = 0; i < str.length; i++) {
hash = ((hash << 5) - hash) + str.charCodeAt(i);
hash = hash & hash;
}
return 'Hx8k' + Math.abs(hash).toString(16).padStart(8, '0').slice(0, 8) + '...';
};
const generateSig = () => 'ML-DSA-44:' + [...Array(20)].map(() => 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'.charAt(Math.floor(Math.random() * 62))).join('') + '...';
const Playground = () => {
const [payload] = useState({ action: "approve", amount: 500 });
const [envelope, setEnvelope] = useState(null);
const [seq, setSeq] = useState(1);
const [seenSeqs, setSeenSeqs] = useState(new Set());
const [verifyResult, setVerifyResult] = useState(null);
const [tamperedPayload, setTamperedPayload] = useState(null);
const sign = () => {
setEnvelope({
spec: "moss-0001",
subject: "moss:demo:my-agent",
key_version: 1,
seq: seq,
issued_at: new Date().toISOString(),
payload_hash: generateHash(payload),
signature: generateSig()
});
setSeq(seq + 1);
setVerifyResult(null);
setTamperedPayload(null);
setSeenSeqs(new Set());
};
const verify = () => {
if (!envelope) return;
if (tamperedPayload) {
setVerifyResult({ valid: false, reason: "payload_hash mismatch" });
return;
}
if (seenSeqs.has(envelope.seq)) {
setVerifyResult({ valid: false, reason: `seq ${envelope.seq} already seen` });
return;
}
setSeenSeqs(new Set([...seenSeqs, envelope.seq]));
setVerifyResult({ valid: true });
};
const tamper = () => {
if (!envelope) return;
setTamperedPayload({ action: "approve", amount: 50000 });
setVerifyResult(null);
};
const replay = () => {
if (!envelope) return;
setSeenSeqs(new Set([...seenSeqs, envelope.seq]));
setTimeout(() => setVerifyResult({ valid: false, reason: `seq ${envelope.seq} already seen` }), 100);
};
const reset = () => {
setEnvelope(null);
setVerifyResult(null);
setTamperedPayload(null);
setSeenSeqs(new Set());
setSeq(1);
};
return (
<div className="bg-zinc-900/50 border border-zinc-800 rounded-lg overflow-hidden">
<div className="border-b border-zinc-800 px-4 py-2 flex items-center justify-between">
<div className="flex items-center gap-2">
<div className="w-3 h-3 rounded-full bg-zinc-700" />
<div className="w-3 h-3 rounded-full bg-zinc-700" />
<div className="w-3 h-3 rounded-full bg-zinc-700" />
<span className="text-zinc-500 text-xs ml-2 mono">sign → verify → tamper → replay</span>
</div>
<span className="text-zinc-600 text-xs">demo — <span className="text-zinc-500">pip install moss-sdk</span></span>
</div>
<div className="p-4 sm:p-6 grid md:grid-cols-2 gap-6">
<div className="space-y-4">
<div>
<div className="text-zinc-500 text-xs mb-2 mono uppercase tracking-wider">Payload</div>
<pre className="bg-zinc-950 p-3 rounded text-sm mono text-zinc-300 overflow-x-auto border border-zinc-800">
{tamperedPayload ? (
<span className="text-amber-400">{JSON.stringify(tamperedPayload, null, 2)}</span>
) : JSON.stringify(payload, null, 2)}
</pre>
</div>
<div className="flex flex-wrap gap-2">
<button onClick={sign} className="px-4 py-2 bg-emerald-600 hover:bg-emerald-500 text-white text-sm mono rounded transition-colors">sign</button>
<button onClick={verify} disabled={!envelope} className="px-4 py-2 bg-zinc-800 hover:bg-zinc-700 text-zinc-200 text-sm mono rounded transition-colors border border-zinc-700 disabled:opacity-30">verify</button>
<button onClick={tamper} disabled={!envelope} className="px-4 py-2 bg-zinc-800 hover:bg-amber-900/50 text-zinc-200 text-sm mono rounded transition-colors border border-zinc-700 disabled:opacity-30">tamper</button>
<button onClick={replay} disabled={!envelope} className="px-4 py-2 bg-zinc-800 hover:bg-amber-900/50 text-zinc-200 text-sm mono rounded transition-colors border border-zinc-700 disabled:opacity-30">replay</button>
<button onClick={reset} className="px-4 py-2 bg-zinc-900 hover:bg-zinc-800 text-zinc-500 text-sm mono rounded transition-colors border border-zinc-800">reset</button>
</div>
{verifyResult && (
<div className={`p-3 rounded mono text-sm border ${verifyResult.valid ? 'bg-emerald-950/50 text-emerald-400 border-emerald-900' : 'bg-red-950/50 text-red-400 border-red-900'}`}>
{verifyResult.valid ? '✓ valid' : `✗ ${verifyResult.reason}`}
</div>
)}
</div>
<div>
<div className="text-zinc-500 text-xs mb-2 mono uppercase tracking-wider">Envelope</div>
<pre className="bg-zinc-950 p-3 rounded text-xs mono text-zinc-400 overflow-x-auto h-48 border border-zinc-800">
{envelope ? JSON.stringify(envelope, null, 2) : `{\n // click "sign"\n}`}
</pre>
</div>
</div>
</div>
);
};
const App = () => {
return (
<div className="min-h-screen bg-zinc-950 text-zinc-100">
{/* Nav */}
<nav className="border-b border-zinc-900">
<div className="max-w-5xl mx-auto px-4 sm:px-6 py-4 flex items-center justify-between">
<div className="flex items-center gap-3">
<a href="index.html" className="mono text-lg tracking-tight text-zinc-100 hover:text-white">moss</a>
<span className="text-zinc-700 text-sm mono">moss-0001</span>
</div>
<div className="flex items-center gap-4 sm:gap-6 text-sm text-zinc-500">
<a href="#playground" className="hover:text-zinc-300 transition-colors">Playground</a>
<a href="#integrations" className="hover:text-zinc-300 transition-colors hidden sm:inline">Integrations</a>
<a href="about.html" className="hover:text-zinc-300 transition-colors hidden sm:inline">About</a>
<a href="mailto:moss@iampass.com" className="hover:text-zinc-300 transition-colors hidden sm:inline">Contact</a>
<a href="https://github.com/mosscomputing/moss" className="hover:text-zinc-300 transition-colors">GitHub</a>
<a href="https://discord.gg/2QewJsBc" className="hover:text-zinc-300 transition-colors">Discord</a>
</div>
</div>
</nav>
<main className="max-w-5xl mx-auto px-4 sm:px-6">
{/* Hero */}
<section className="py-16 sm:py-20 border-b border-zinc-900">
<div className="max-w-3xl">
<h1 className="text-3xl sm:text-4xl md:text-5xl font-light tracking-tight leading-tight mb-4">
Know exactly which agent<br />produced what.
</h1>
<p className="text-zinc-400 text-lg mb-8">
MOSS signs every agent output — verifiable, tamper-proof, reproducible.
</p>
<div className="space-y-2 mb-8">
<InlineCopy text="pip install moss-sdk" />
<div className="grid sm:grid-cols-3 gap-2">
<InlineCopy text="pip install moss-crewai" />
<InlineCopy text="pip install moss-autogen" />
<InlineCopy text="pip install moss-langgraph" />
</div>
</div>
<div className="flex flex-wrap gap-3">
<a href="#playground" className="px-5 py-2.5 bg-zinc-100 text-zinc-900 text-sm mono rounded hover:bg-white transition-colors">
Try in 30 Seconds
</a>
<a href="https://github.com/mosscomputing/moss/blob/main/SPEC.md" className="px-5 py-2.5 bg-zinc-900 text-zinc-300 text-sm mono rounded border border-zinc-700 hover:border-zinc-600 transition-colors">
Read the Spec
</a>
</div>
<p className="text-zinc-300 text-sm mt-6">Local-first. No account required. Works offline.</p>
<p className="text-zinc-300 text-sm mt-6 border-l-2 border-zinc-500 pl-4">Agents will outnumber humans. Identity infrastructure must exist before that happens.</p>
</div>
</section>
{/* Playground — First thing after hero */}
<section id="playground" className="py-12 border-b border-zinc-900">
<div className="flex items-center justify-between mb-4">
<h2 className="text-xs mono uppercase tracking-wider text-zinc-500">Playground</h2>
</div>
<Playground />
</section>
{/* Context + Stack — Side by side */}
<section className="py-12 border-b border-zinc-900">
<div className="grid md:grid-cols-2 gap-12">
{/* Context — One casual line, not pitch bullets */}
<div>
<p className="text-zinc-400 mb-6">
Multi-agent pipelines break. Four agents touched it, no idea which one. MOSS gives every agent an identity and signs every output so you can trace, diff, and verify.
</p>
<p className="text-zinc-500 text-sm mb-4">
Post-quantum secure (ML-DSA-44). Signatures made today stay valid when quantum arrives.
</p>
<p className="text-zinc-500 text-sm">
Why not GPG/JWT? No sequence numbers, no replay protection, no framework bindings. MOSS was built for agents.
</p>
</div>
{/* Stack */}
<div>
<h2 className="text-xs mono uppercase tracking-wider text-zinc-500 mb-6">Where MOSS Fits</h2>
<div className="space-y-3 mb-6">
<div className="bg-emerald-900/30 border border-emerald-800 rounded p-3 text-center">
<span className="text-emerald-400 mono text-sm">MOSS — Identity + Signing</span>
</div>
<div className="text-center text-zinc-600 text-xs">↓ wraps ↓</div>
<div className="bg-zinc-800 border border-zinc-700 rounded p-3 text-center">
<span className="text-zinc-300 text-sm">CrewAI · AutoGen · LangGraph · Custom</span>
</div>
<div className="text-center text-zinc-600 text-xs">↓ runs on ↓</div>
<div className="bg-zinc-900 border border-zinc-800 rounded p-3 text-center">
<span className="text-zinc-500 text-sm">AWS · Google · Azure · Local</span>
</div>
</div>
<div className="text-sm text-zinc-500 space-y-1">
<div><span className="text-zinc-400">Works with:</span> LangSmith, Arize, Guardrails, MCP</div>
<div><span className="text-zinc-400">Not:</span> observability, guardrails, or user auth</div>
</div>
</div>
</div>
</section>
{/* Security Guarantees */}
<section className="py-12 border-b border-zinc-900">
<h2 className="text-xs mono uppercase tracking-wider text-zinc-500 mb-6">Security Guarantees</h2>
<div className="grid sm:grid-cols-2 lg:grid-cols-4 gap-6">
<div>
<div className="text-zinc-200 font-medium mb-1">Identity</div>
<p className="text-zinc-500 text-sm">Every agent has a unique subject bound to a key pair.</p>
</div>
<div>
<div className="text-zinc-200 font-medium mb-1">Integrity</div>
<p className="text-zinc-500 text-sm">Payload hash detects any modification.</p>
</div>
<div>
<div className="text-zinc-200 font-medium mb-1">Replay Protection</div>
<p className="text-zinc-500 text-sm">Sequence numbers prevent replay attacks.</p>
</div>
<div>
<div className="text-zinc-200 font-medium mb-1">Post-Quantum</div>
<p className="text-zinc-500 text-sm">ML-DSA-44 signatures survive quantum.</p>
</div>
</div>
</section>
{/* How It Works — Flow + Code */}
<section className="py-12 border-b border-zinc-900">
<h2 className="text-xs mono uppercase tracking-wider text-zinc-500 mb-6">How It Works</h2>
{/* Flow Diagram */}
<div className="mb-8 p-4 bg-zinc-900/30 rounded-lg border border-zinc-800 overflow-x-auto">
<div className="flex items-center justify-between min-w-[500px] text-sm mono">
<div className="text-center">
<div className="w-20 h-16 rounded bg-zinc-800 border border-zinc-700 flex items-center justify-center mb-2">
<span className="text-zinc-400 text-xs">Agent</span>
</div>
<div className="text-zinc-600 text-xs">moss:acme:bot</div>
</div>
<div className="flex items-center gap-2 text-zinc-600">
<span>→</span>
<span className="text-emerald-500">sign()</span>
<span>→</span>
</div>
<div className="text-center">
<div className="w-24 h-16 rounded bg-zinc-800 border border-zinc-700 flex items-center justify-center mb-2 p-1">
<pre className="text-[9px] text-zinc-500">{`{spec,subj,\n seq,sig}`}</pre>
</div>
<div className="text-zinc-600 text-xs">Envelope</div>
</div>
<div className="flex items-center gap-2 text-zinc-600">
<span>→</span>
<span className="text-emerald-500">verify()</span>
<span>→</span>
</div>
<div className="text-center">
<div className="w-16 h-16 rounded bg-zinc-800 border border-zinc-700 flex items-center justify-center mb-2">
<span className="text-emerald-500 text-lg">✓</span>
</div>
<div className="text-zinc-600 text-xs">Verified</div>
</div>
</div>
</div>
{/* Sign/Verify Code */}
<div className="grid md:grid-cols-2 gap-6">
<div>
<div className="text-zinc-500 text-xs mb-2 mono uppercase tracking-wider">Sign</div>
<CodeBlock code={`from moss import Subject
agent = Subject.create("moss:acme:order-bot")
envelope = agent.sign({
"action": "order_confirmed",
"order_id": 12345
})`} />
</div>
<div>
<div className="text-zinc-500 text-xs mb-2 mono uppercase tracking-wider">Verify</div>
<CodeBlock code={`from moss import Subject
result = Subject.verify(envelope)
if result.valid:
print(result.subject) # who signed
else:
print(result.reason) # why it failed`} />
</div>
</div>
</section>
{/* Framework Integrations */}
<section id="integrations" className="py-12 border-b border-zinc-900">
<h2 className="text-xs mono uppercase tracking-wider text-zinc-500 mb-6">Integrations</h2>
<div className="grid md:grid-cols-2 gap-6">
<div>
<div className="flex items-center justify-between mb-3">
<a href="https://pypi.org/project/moss-crewai/" class="text-zinc-200 mono hover:text-white">CrewAI</a>
<code className="text-xs text-zinc-600 mono">pip install moss-crewai</code>
</div>
<CodeBlock code={`from moss_crewai import moss_wrap
agent = moss_wrap(agent, "moss:team:researcher")
# .moss_envelope on every output`} />
</div>
<div>
<div className="flex items-center justify-between mb-3">
<a href="https://pypi.org/project/moss-autogen/" class="text-zinc-200 mono hover:text-white">AutoGen</a>
<code className="text-xs text-zinc-600 mono">pip install moss-autogen</code>
</div>
<CodeBlock code={`from moss_autogen import signed_agent
agent = signed_agent(agent, "moss:lab:analyst")
# .moss_envelope on every reply`} />
</div>
<div>
<div className="flex items-center justify-between mb-3">
<a href="https://pypi.org/project/moss-langgraph/" class="text-zinc-200 mono hover:text-white">LangGraph</a>
<code className="text-xs text-zinc-600 mono">pip install moss-langgraph</code>
</div>
<CodeBlock code={`from moss_langgraph import signed_node
g.add_node("step", signed_node(fn, "moss:flow:step"))
# state["moss_envelope"] populated`} />
</div>
<div>
<div className="flex items-center justify-between mb-3">
<a href="https://pypi.org/project/moss-langchain/" class="text-zinc-200 mono hover:text-white">LangChain</a>
<code className="text-xs text-zinc-600 mono">pip install moss-langchain</code>
</div>
<CodeBlock code={`from moss_langchain import SignedCallbackHandler
cb = SignedCallbackHandler("moss:bot:summary")
chain.invoke(input, config={"callbacks": [cb]})`} />
</div>
</div>
</section>
{/* What It Collects */}
<section className="py-12 border-b border-zinc-900">
<h2 className="text-xs mono uppercase tracking-wider text-zinc-500 mb-6">What MOSS Collects</h2>
<div className="grid sm:grid-cols-2 gap-8 text-sm">
<div>
<div className="text-zinc-300 mb-3">✓ In the envelope</div>
<div className="text-zinc-500 space-y-1">
<div><code className="text-emerald-400">subject</code> — agent ID (you define it)</div>
<div><code className="text-emerald-400">payload_hash</code> — SHA-256 of output</div>
<div><code className="text-emerald-400">seq</code> — sequence number</div>
<div><code className="text-emerald-400">signature</code> — cryptographic proof</div>
</div>
</div>
<div>
<div className="text-zinc-300 mb-3">✗ Never</div>
<div className="text-zinc-500 space-y-1">
<div>Your payload content (only the hash)</div>
<div>LLM prompts or responses</div>
<div>User data, PII, telemetry</div>
<div>Network calls — works fully offline</div>
</div>
</div>
</div>
<div className="mt-6 text-sm text-zinc-600">
Keys stored locally at <code className="mono">~/.moss/keys/</code>. No account. No cloud.
</div>
</section>
{/* Discord CTA */}
<section className="py-12 border-b border-zinc-900">
<div className="bg-zinc-900/50 border border-zinc-800 rounded-lg p-6 text-center">
<h3 className="text-zinc-200 mb-2">Join the Community</h3>
<p className="text-zinc-500 text-sm mb-4">Questions? Feedback? Building something?</p>
<a href="https://discord.gg/2QewJsBc" className="inline-block px-5 py-2.5 bg-[#5865F2] text-white text-sm mono rounded hover:bg-[#4752C4] transition-colors">
Join Discord
</a>
</div>
</section>
{/* Technical Details */}
<section className="py-12 border-b border-zinc-900">
<h2 className="text-xs mono uppercase tracking-wider text-zinc-500 mb-6">Technical Details</h2>
<div className="grid sm:grid-cols-4 gap-6 text-sm">
<div>
<div className="text-zinc-400">Signature</div>
<div className="text-zinc-200">ML-DSA-44</div>
<div className="text-zinc-600 text-xs">FIPS 204</div>
</div>
<div>
<div className="text-zinc-400">Canonicalization</div>
<div className="text-zinc-200">RFC 8785</div>
<div className="text-zinc-600 text-xs">JCS</div>
</div>
<div>
<div className="text-zinc-400">Hash</div>
<div className="text-zinc-200">SHA-256</div>
<div className="text-zinc-600 text-xs">base64url</div>
</div>
<div>
<div className="text-zinc-400">Overhead</div>
<div className="text-zinc-200"><1ms</div>
<div className="text-zinc-600 text-xs">~2KB envelope</div>
</div>
</div>
</section>
{/* Libraries */}
<section className="py-12 border-b border-zinc-900">
<h2 className="text-xs mono uppercase tracking-wider text-zinc-500 mb-6">Libraries</h2>
<div className="grid sm:grid-cols-4 gap-4 text-sm">
<div className="p-3 bg-zinc-900/50 rounded border border-zinc-800">
<div className="flex items-center justify-between mb-2">
<div className="flex items-center gap-2">
<svg className="w-4 h-4 text-[#3776AB]" viewBox="0 0 24 24" fill="currentColor"><path d="M14.25.18l.9.2.73.26.59.3.45.32.34.34.25.34.16.33.1.3.04.26.02.2-.01.13V8.5l-.05.63-.13.55-.21.46-.26.38-.3.31-.33.25-.35.19-.35.14-.33.1-.3.07-.26.04-.21.02H8.77l-.69.05-.59.14-.5.22-.41.27-.33.32-.27.35-.2.36-.15.37-.1.35-.07.32-.04.27-.02.21v3.06H3.17l-.21-.03-.28-.07-.32-.12-.35-.18-.36-.26-.36-.36-.35-.46-.32-.59-.28-.73-.21-.88-.14-1.05-.05-1.23.06-1.22.16-1.04.24-.87.32-.71.36-.57.4-.44.42-.33.42-.24.4-.16.36-.1.32-.05.24-.01h.16l.06.01h8.16v-.83H6.18l-.01-2.75-.02-.37.05-.34.11-.31.17-.28.25-.26.31-.23.38-.2.44-.18.51-.15.58-.12.64-.1.71-.06.77-.04.84-.02 1.27.05zm-6.3 1.98l-.23.33-.08.41.08.41.23.34.33.22.41.09.41-.09.33-.22.23-.34.08-.41-.08-.41-.23-.33-.33-.22-.41-.09-.41.09zm13.09 3.95l.28.06.32.12.35.18.36.27.36.35.35.47.32.59.28.73.21.88.14 1.04.05 1.23-.06 1.23-.16 1.04-.24.86-.32.71-.36.57-.4.45-.42.33-.42.24-.4.16-.36.09-.32.05-.24.02-.16-.01h-8.22v.82h5.84l.01 2.76.02.36-.05.34-.11.31-.17.29-.25.25-.31.24-.38.2-.44.17-.51.15-.58.13-.64.09-.71.07-.77.04-.84.01-1.27-.04-1.07-.14-.9-.2-.73-.25-.59-.3-.45-.33-.34-.34-.25-.34-.16-.33-.1-.3-.04-.25-.02-.2.01-.13v-5.34l.05-.64.13-.54.21-.46.26-.38.3-.32.33-.24.35-.2.35-.14.33-.1.3-.06.26-.04.21-.02.13-.01h5.84l.69-.05.59-.14.5-.21.41-.28.33-.32.27-.35.2-.36.15-.36.1-.35.07-.32.04-.28.02-.21V6.07h2.09l.14.01zm-6.47 14.25l-.23.33-.08.41.08.41.23.33.33.23.41.08.41-.08.33-.23.23-.33.08-.41-.08-.41-.23-.33-.33-.23-.41-.08-.41.08z"/></svg>
<span className="text-zinc-200 mono">Python</span>
</div>
<span className="text-xs text-emerald-400">✓</span>
</div>
<code className="text-zinc-500 text-xs mono">pip install moss-sdk</code>
</div>
<div className="p-3 bg-zinc-900/50 rounded border border-zinc-800 opacity-60">
<div className="flex items-center justify-between mb-2">
<div className="flex items-center gap-2">
<svg className="w-4 h-4 text-[#3178C6]" viewBox="0 0 24 24" fill="currentColor"><path d="M1.125 0C.502 0 0 .502 0 1.125v21.75C0 23.498.502 24 1.125 24h21.75c.623 0 1.125-.502 1.125-1.125V1.125C24 .502 23.498 0 22.875 0zm17.363 9.75c.612 0 1.154.037 1.627.111a6.38 6.38 0 0 1 1.306.34v2.458a3.95 3.95 0 0 0-.643-.361 5.093 5.093 0 0 0-.717-.26 5.453 5.453 0 0 0-1.426-.2c-.3 0-.573.028-.819.086a2.1 2.1 0 0 0-.623.242c-.17.104-.3.229-.393.374a.888.888 0 0 0-.14.49c0 .196.053.373.156.529.104.156.252.304.443.444s.423.276.696.41c.273.135.582.274.926.416.47.197.892.407 1.266.628.374.222.695.473.963.753.268.279.472.598.614.957.142.359.214.776.214 1.253 0 .657-.125 1.21-.373 1.656a3.033 3.033 0 0 1-1.012 1.085 4.38 4.38 0 0 1-1.487.596c-.566.12-1.163.18-1.79.18a9.916 9.916 0 0 1-1.84-.164 5.544 5.544 0 0 1-1.512-.493v-2.63a5.033 5.033 0 0 0 3.237 1.2c.333 0 .624-.03.872-.09.249-.06.456-.144.623-.25.166-.108.29-.234.373-.38a1.023 1.023 0 0 0-.074-1.089 2.12 2.12 0 0 0-.537-.5 5.597 5.597 0 0 0-.807-.444 27.72 27.72 0 0 0-1.007-.436c-.918-.383-1.602-.852-2.053-1.405-.45-.553-.676-1.222-.676-2.005 0-.614.123-1.141.369-1.582.246-.441.58-.804 1.004-1.089a4.494 4.494 0 0 1 1.47-.629 7.536 7.536 0 0 1 1.77-.201zm-15.113.188h9.563v2.166H9.506v9.646H6.789v-9.646H3.375z"/></svg>
<span className="text-zinc-300 mono">TypeScript</span>
</div>
<span className="text-xs text-zinc-500">soon</span>
</div>
<code className="text-zinc-600 text-xs mono">npm install @moss/sdk</code>
</div>
<div className="p-3 bg-zinc-900/50 rounded border border-zinc-800 opacity-60">
<div className="flex items-center justify-between mb-2">
<div className="flex items-center gap-2">
<svg className="w-4 h-4 text-[#00ADD8]" viewBox="0 0 24 24" fill="currentColor"><path d="M1.811 10.231c-.047 0-.058-.023-.035-.059l.246-.315c.023-.035.081-.058.128-.058h4.172c.046 0 .058.035.035.07l-.199.303c-.023.036-.082.07-.117.07zM.047 11.306c-.047 0-.059-.023-.035-.058l.245-.316c.023-.035.082-.058.129-.058h5.328c.047 0 .07.035.058.07l-.093.28c-.012.047-.058.07-.105.07zm2.828 1.075c-.047 0-.059-.035-.035-.07l.163-.292c.023-.035.07-.07.117-.07h2.337c.047 0 .07.035.07.082l-.023.28c0 .047-.047.082-.082.082zm12.129-2.36c-.736.187-1.239.327-1.963.514-.176.046-.187.058-.34-.117-.174-.199-.303-.327-.548-.444-.737-.362-1.45-.257-2.115.175-.795.514-1.204 1.274-1.192 2.22.011.935.654 1.706 1.577 1.835.795.105 1.46-.175 1.987-.771.105-.13.198-.27.315-.434H10.47c-.245 0-.304-.152-.222-.35.152-.362.432-.97.596-1.274a.315.315 0 01.292-.187h4.253c-.023.316-.023.631-.07.947a4.983 4.983 0 01-.958 2.29c-.841 1.11-1.94 1.8-3.33 1.986-1.145.152-2.209-.07-3.143-.77-.865-.655-1.356-1.52-1.484-2.595-.152-1.274.222-2.419.993-3.424.83-1.086 1.928-1.776 3.272-2.02 1.098-.2 2.15-.07 3.096.571.62.41 1.063.97 1.356 1.648.07.105.023.164-.117.2z"/></svg>
<span className="text-zinc-300 mono">Go</span>
</div>
<span className="text-xs text-zinc-500">soon</span>
</div>
<code className="text-zinc-600 text-xs mono">go get moss.dev/sdk</code>
</div>
<div className="p-3 bg-zinc-900/50 rounded border border-zinc-800 opacity-60">
<div className="flex items-center justify-between mb-2">
<div className="flex items-center gap-2">
<svg className="w-4 h-4 text-[#DEA584]" viewBox="0 0 24 24" fill="currentColor"><path d="M23.687 11.709l-.995-.616a13.559 13.559 0 0 0-.028-.29l.855-.797a.344.344 0 0 0-.114-.571l-1.093-.409a8.392 8.392 0 0 0-.086-.282l.682-.947a.344.344 0 0 0-.199-.54l-1.159-.194a6.91 6.91 0 0 0-.14-.26l.48-1.066a.344.344 0 0 0-.275-.485l-1.19.041c-.063-.078-.128-.154-.195-.228l.258-1.149a.344.344 0 0 0-.34-.412l-1.188.265c-.073-.063-.147-.124-.223-.182l.022-1.185a.344.344 0 0 0-.393-.327l-1.15.481a6.91 6.91 0 0 0-.257-.14l-.211-1.163a.344.344 0 0 0-.437-.232l-1.076.686a8.46 8.46 0 0 0-.282-.086l-.439-1.092a.345.345 0 0 0-.47-.13l-.96.863a13.559 13.559 0 0 0-.29-.028l-.651-.986a.344.344 0 0 0-.49-.025l-.81.992a13.286 13.286 0 0 0-.29.028l-.84-.922a.344.344 0 0 0-.5.055l-.616.994c-.098.006-.195.015-.29.028l-.997-.854a.344.344 0 0 0-.57.114l-.41 1.093c-.095.025-.188.053-.281.084l-.948-.682a.344.344 0 0 0-.54.199l-.193 1.16c-.088.044-.174.09-.26.138l-1.066-.48a.344.344 0 0 0-.485.275l.041 1.19a6.91 6.91 0 0 0-.228.195l-1.15-.259a.344.344 0 0 0-.412.34l.266 1.189c-.063.073-.124.147-.183.223L.85 9.586a.344.344 0 0 0-.327.394l.481 1.15a6.91 6.91 0 0 0-.14.256l-1.163.212a.344.344 0 0 0-.232.437l.687 1.076a8.46 8.46 0 0 0-.087.282l-1.092.44a.345.345 0 0 0-.13.47l.863.96a13.559 13.559 0 0 0-.028.29l-.986.65a.344.344 0 0 0-.025.49l.992.81c.006.098.015.194.028.29l-.854.996a.343.343 0 0 0 .114.57l1.093.41c.025.095.053.189.084.282l-.682.947a.344.344 0 0 0 .199.54l1.16.194c.044.088.09.174.138.26l-.48 1.066a.344.344 0 0 0 .275.485l1.19-.04c.063.077.128.153.195.227l-.259 1.15a.344.344 0 0 0 .34.412l1.189-.266c.073.063.147.124.223.183l-.022 1.185a.344.344 0 0 0 .393.327l1.15-.481c.085.05.17.096.257.14l.211 1.163c.037.17.2.276.374.248l.063-.012 1.076-.686c.093.033.186.062.282.086l.439 1.092a.345.345 0 0 0 .47.13l.96-.863c.096.012.193.021.29.028l.65.986a.344.344 0 0 0 .49.025l.81-.992c.097-.006.194-.015.29-.028l.84.922a.343.343 0 0 0 .5-.055l.616-.994c.098-.006.195-.015.29-.028l.996.854a.343.343 0 0 0 .57-.114l.41-1.093c.095-.025.188-.053.282-.084l.947.682a.344.344 0 0 0 .54-.199l.194-1.16c.088-.044.174-.09.26-.138l1.066.48a.344.344 0 0 0 .485-.275l-.041-1.19a6.91 6.91 0 0 0 .228-.195l1.15.259a.344.344 0 0 0 .412-.34l-.266-1.189c.063-.073.124-.147.183-.223l1.185.022a.344.344 0 0 0 .327-.393l-.481-1.15c.05-.085.096-.17.14-.257l1.163-.211a.344.344 0 0 0 .232-.437l-.687-1.076c.033-.093.062-.186.087-.282l1.092-.44a.345.345 0 0 0 .13-.47l-.864-.96a13.559 13.559 0 0 0 .028-.29l.986-.65a.344.344 0 0 0 .026-.49zm-6.867 8.054c-3.054 1.62-6.878.718-8.88-2.102-.324-.456-.594-.95-.806-1.476l3.147-2.045.096-.298-.096-.299-3.325-.222a7.072 7.072 0 0 1 .092-2.14l3.248.34.247-.205-.012-.32-2.937-1.417a7.072 7.072 0 0 1 1.037-1.844l2.623 1.752.288-.097.083-.308-2.145-2.425a7.07 7.07 0 0 1 1.68-1.281l1.55 2.775.304.013.172-.26-.963-3.068c.658-.247 1.35-.412 2.068-.487l.45 3.195.283.12.234-.185-.214-3.227a7.059 7.059 0 0 1 2.136.091l-.318 3.24.199.247.32-.012 1.391-2.95a7.067 7.067 0 0 1 1.856 1.028l-1.729 2.641.097.288.308.083 2.404-2.166a7.07 7.07 0 0 1 1.29 1.672l-2.76 1.57-.012.304.26.172 3.05-.982a7.072 7.072 0 0 1 .496 2.06l-3.18.472-.12.283.185.234 3.211-.235a7.059 7.059 0 0 1-.082 2.14l-3.234-.34-.247.199.012.32 2.938 1.417a7.07 7.07 0 0 1-1.037 1.844l-2.623-1.752-.288.097-.083.308 2.145 2.425c-.511.509-1.09.95-1.725 1.31z"/></svg>
<span className="text-zinc-300 mono">Rust</span>
</div>
<span className="text-xs text-zinc-500">soon</span>
</div>
<code className="text-zinc-600 text-xs mono">cargo add moss-sdk</code>
</div>
</div>
</section>
{/* Footer */}
<footer className="py-10">
<div className="flex flex-col sm:flex-row sm:items-center justify-between gap-4">
<div className="flex items-center gap-6 text-sm mono text-zinc-500">
<a href="https://github.com/mosscomputing/moss/blob/main/SPEC.md" className="hover:text-zinc-300">Spec</a>
<a href="https://github.com/mosscomputing/moss" className="hover:text-zinc-300">GitHub</a>
<a href="https://pypi.org/project/moss-sdk/" className="hover:text-zinc-300">PyPI</a>
<a href="https://discord.gg/2QewJsBc" className="hover:text-zinc-300">Discord</a>
<a href="mailto:moss@iampass.com" className="hover:text-zinc-300">Contact</a>
</div>
<div className="flex items-center gap-6 text-sm text-zinc-600">
<a href="terms.html" className="hover:text-zinc-400">Terms</a>
<a href="privacy.html" className="hover:text-zinc-400">Privacy</a>
<span>© 2025 IAMPASS Technologies Inc</span>
</div>
</div>
</footer>
</main>
</div>
);
};
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);
</script>
</body>
</html>