11 lines
671 B
TypeScript
11 lines
671 B
TypeScript
// Compile-time pinned constant (mobile/claude.md's "Compile-time constants"
|
|
// table; crypto.md's "Compile-time key constants"). Real dev value from
|
|
// dev/keys/ed25519-public.b64 — hand-set for this slice, same as the
|
|
// extension's ED25519_PUBLIC_KEY_B64 (extension/src/constants.ts); both
|
|
// name the same key material under their own component's constant name.
|
|
// scripts/setup-dev.js's constant-patching automation is a documented
|
|
// fast-follow once this pattern is proven (dev.md).
|
|
|
|
/** Ed25519 — verifies signed key exchange tokens (interfaces.md, "Signed token (QR payload)"). */
|
|
export const ED25519_PUBKEY = 'Z9ppr33AB5gznf-mQU2F9Y3E-MEoNcGHtmlh7rzaTh4';
|