mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-06-03 21:51:25 +00:00
f6aca47604
* xftp: implementation of XFTP client as web page (rfc, low level functions) * protocol, file descriptions, more cryptogrpahy, handshake encoding, etc. * xftp server changes to support web slients: SNI-based certificate choice, CORS headers, OPTIONS request * web handshake * test for xftp web handshake * xftp-web client functions, fix transmission encoding * support description "redirect" in agent.ts and cross-platform compatibility tests (Haskell <> TypeScript) * rfc: web transport * client transport abstraction * browser environment * persistent client sessions * move rfcs * web page plan * improve plan * webpage implementation (not tested) * fix test * fix test 2 * fix test 3 * fixes and page test plan * allow sending xftp client hello after handshake - for web clients that dont know if established connection exists * page tests pass * concurrent and padded hellos in the server * update TS client to pad hellos * fix tests * preview:local * local preview over https * fixed https in the test page * web test cert fixtures * debug logging in web page and server * remove debug logging in server/browser, run preview xftp server via cabal run to ensure the latest code is used * debug logging for page sessions * add plan * improve error handling, handle browser reconnections/re-handshake * fix * debugging * opfs fallback * delete test screenshot * xftp CLI to support link * fix encoding for XFTPServerHandshake * support redirect file descriptions in xftp CLI receive * refactor CLI redirect * xftp-web: fixes and multi-server upload (#1714) * fix: await sodium.ready in crypto/keys.ts (+ digest.ts StateAddress cast) * multi-server parallel upload, remove pickRandomServer * fix worker message race: wait for ready signal before posting messages * suppress vite build warnings: emptyOutDir, externals, chunkSizeWarningLimit * fix Haskell web tests: use agent+server API, wrap server in array, suppress debug logs * remove dead APIs: un-export connectXFTP, delete closeXFTP * fix TypeScript errors in check:web (#1716) - client.ts: cast globalThis.process to any for browser tsconfig, suppress node:http2 import, use any for Buffer/chunks, cast fetch body - crypto.worker.ts: cast sha512_init() return to StateAddress * fix: serialize worker message processing to prevent OPFS handle race async onmessage allows interleaved execution at await points. When downloadFileRaw fetches chunks from multiple servers in parallel, concurrent handleDecryptAndStore calls both see downloadWriteHandle as null and race on createSyncAccessHandle for the same file, causing intermittent NoModificationAllowedError. Chain message handlers on a promise queue so each runs to completion before the next starts. * xftp-web: prepare for npm publishing (#1715) * prepare package.json for npm publishing Remove private flag, add description/license/repository/publishConfig, rename postinstall to pretest, add prepublishOnly, set files and main. * stable output filenames in production build * fix repository url format, expand files array * embeddable component: scoped CSS, dark mode, i18n, events, share - worker output to assets/ for single-directory deployment - scoped all CSS under #app, removed global resets - dark mode via .dark ancestor class - progress ring reads colors from CSS custom properties - i18n via window.__XFTP_I18N__ with t() helper - configurable mount element via data-xftp-app attribute - optional hashchange listener (data-no-hashchange) - completion events: xftp:upload-complete, xftp:download-complete - enhanced file-too-large error mentioning SimpleX app - native share button via navigator.share * deferred init and runtime server configuration - data-defer-init attribute skips auto-initialization - window.__XFTP_SERVERS__ overrides baked-in server list * use relative base path for relocatable build output * xftp-web: retry resets to default state, use innerHTML for errors * xftp-web: only enter download mode for valid XFTP URIs in hash * xftp-web: render UI before WASM is ready Move sodium.ready await after UI initialization so the upload/download interface appears instantly. WASM is only needed when user triggers an actual upload or download. Dispatch xftp:ready event once WASM loads. * xftp-web: CLS placeholder HTML and embedder CSS selectors Add placeholder HTML to index.html so the page renders a styled card before JS executes, preventing layout shift. Use a <template> element with an inline script to swap to the download placeholder when the URL hash indicates a file download. Auto-compute CSP SHA-256 hashes for inline scripts in the vite build plugin. Change all CSS selectors from #app to :is(#app, [data-xftp-app]) so styles apply when the widget is embedded with data-xftp-app attribute. * xftp-web: progress ring overhaul Rewrite progress ring with smooth lerp animation, green checkmark on completion, theme reactivity via MutationObserver, and per-phase color variables (encrypt/upload/download/decrypt). Show honest per-phase progress: each phase animates 0-100% independently with a ring color change between phases. Add decrypt progress callback from the web worker so the decryption phase tracks real chunk processing instead of showing an indeterminate spinner. Snap immediately on phase reset (0) and completion (1) to avoid lingering partial progress. Clean up animation and observers via destroy() in finally blocks. * xftp-web: single progress ring for upload, simplify ring color * xftp-web: single progress ring for download * feat(xftp-web): granular progress for encrypt/decrypt phases Add byte-level progress callbacks to encryptFile, decryptChunks, and sha512Streaming by processing data in 256KB segments. Worker reports fine-grained progress across all phases (encrypt+hash+write for upload, read+hash+decrypt for download). Progress ring gains fillTo method for smooth ease-out animation during minimum display delays. Encrypt/decrypt phases fill their weighted regions (0-15% and 85-99%) with real callbacks, with fillTo covering remaining time when work finishes under the 1s minimum for files >= 100KB. * rename package --------- Co-authored-by: Evgeny Poberezkin <evgeny@poberezkin.com> --------- Co-authored-by: Evgeny @ SimpleX Chat <259188159+evgeny-simplex@users.noreply.github.com> Co-authored-by: shum <github.shum@liber.li> Co-authored-by: sh <37271604+shumvgolove@users.noreply.github.com>
390 lines
15 KiB
TypeScript
390 lines
15 KiB
TypeScript
// XFTP upload/download orchestration + URI encoding -- Simplex.FileTransfer.Client.Main
|
|
//
|
|
// Combines all building blocks: encryption, chunking, XFTP client commands,
|
|
// file descriptions, and DEFLATE-compressed URI encoding.
|
|
|
|
import pako from "pako"
|
|
import {encryptFile, encodeFileHeader} from "./crypto/file.js"
|
|
import {generateEd25519KeyPair, encodePubKeyEd25519, encodePrivKeyEd25519, decodePrivKeyEd25519, ed25519KeyPairFromSeed} from "./crypto/keys.js"
|
|
import {sha512Streaming} from "./crypto/digest.js"
|
|
import {prepareChunkSizes, prepareChunkSpecs, getChunkDigest, fileSizeLen, authTagSize} from "./protocol/chunks.js"
|
|
import {
|
|
encodeFileDescription, decodeFileDescription, validateFileDescription,
|
|
base64urlEncode, base64urlDecode,
|
|
type FileDescription
|
|
} from "./protocol/description.js"
|
|
import type {FileInfo} from "./protocol/commands.js"
|
|
import {
|
|
createXFTPChunk, uploadXFTPChunk, downloadXFTPChunk, downloadXFTPChunkRaw,
|
|
deleteXFTPChunk, type XFTPClientAgent
|
|
} from "./client.js"
|
|
export {newXFTPAgent, closeXFTPAgent, type XFTPClientAgent, type TransportConfig} from "./client.js"
|
|
import {processDownloadedFile, decryptReceivedChunk} from "./download.js"
|
|
import type {XFTPServer} from "./protocol/address.js"
|
|
import {formatXFTPServer, parseXFTPServer} from "./protocol/address.js"
|
|
import type {FileHeader} from "./crypto/file.js"
|
|
|
|
// -- Types
|
|
|
|
interface SentChunk {
|
|
chunkNo: number
|
|
senderId: Uint8Array
|
|
senderKey: Uint8Array // 64B libsodium Ed25519 private key
|
|
recipientId: Uint8Array
|
|
recipientKey: Uint8Array // 64B libsodium Ed25519 private key
|
|
chunkSize: number
|
|
digest: Uint8Array // SHA-256
|
|
server: XFTPServer
|
|
}
|
|
|
|
export interface EncryptedFileMetadata {
|
|
digest: Uint8Array // SHA-512 of encData
|
|
key: Uint8Array // 32B SbKey
|
|
nonce: Uint8Array // 24B CbNonce
|
|
chunkSizes: number[]
|
|
}
|
|
|
|
export interface EncryptedFileInfo extends EncryptedFileMetadata {
|
|
encData: Uint8Array
|
|
}
|
|
|
|
export interface UploadResult {
|
|
rcvDescription: FileDescription
|
|
sndDescription: FileDescription
|
|
uri: string // base64url-encoded compressed YAML (no leading #)
|
|
}
|
|
|
|
export interface DownloadResult {
|
|
header: FileHeader
|
|
content: Uint8Array
|
|
}
|
|
|
|
// -- URI encoding/decoding (RFC section 4.1: DEFLATE + base64url)
|
|
|
|
export function encodeDescriptionURI(fd: FileDescription): string {
|
|
const yaml = encodeFileDescription(fd)
|
|
const compressed = pako.deflateRaw(new TextEncoder().encode(yaml))
|
|
return base64urlEncode(compressed)
|
|
}
|
|
|
|
export function decodeDescriptionURI(fragment: string): FileDescription {
|
|
const compressed = base64urlDecode(fragment)
|
|
const yaml = new TextDecoder().decode(pako.inflateRaw(compressed))
|
|
const fd = decodeFileDescription(yaml)
|
|
const err = validateFileDescription(fd)
|
|
if (err) throw new Error("decodeDescriptionURI: " + err)
|
|
return fd
|
|
}
|
|
|
|
// -- Upload
|
|
|
|
export function encryptFileForUpload(source: Uint8Array, fileName: string): EncryptedFileInfo {
|
|
const key = new Uint8Array(32)
|
|
const nonce = new Uint8Array(24)
|
|
crypto.getRandomValues(key)
|
|
crypto.getRandomValues(nonce)
|
|
const fileHdr = encodeFileHeader({fileName, fileExtra: null})
|
|
const fileSize = BigInt(fileHdr.length + source.length)
|
|
const payloadSize = Number(fileSize) + fileSizeLen + authTagSize
|
|
const chunkSizes = prepareChunkSizes(payloadSize)
|
|
const encSize = BigInt(chunkSizes.reduce((a, b) => a + b, 0))
|
|
const encData = encryptFile(source, fileHdr, key, nonce, fileSize, encSize)
|
|
const digest = sha512Streaming([encData])
|
|
console.log(`[AGENT-DBG] encrypt: encData.len=${encData.length} digest=${_dbgHex(digest, 64)} chunkSizes=[${chunkSizes.join(',')}]`)
|
|
return {encData, digest, key, nonce, chunkSizes}
|
|
}
|
|
|
|
const DEFAULT_REDIRECT_THRESHOLD = 400
|
|
|
|
export interface UploadOptions {
|
|
onProgress?: (uploaded: number, total: number) => void
|
|
redirectThreshold?: number
|
|
readChunk?: (offset: number, size: number) => Promise<Uint8Array>
|
|
}
|
|
|
|
export async function uploadFile(
|
|
agent: XFTPClientAgent,
|
|
servers: XFTPServer[],
|
|
encrypted: EncryptedFileMetadata,
|
|
options?: UploadOptions
|
|
): Promise<UploadResult> {
|
|
if (servers.length === 0) throw new Error("uploadFile: servers list is empty")
|
|
const {onProgress, redirectThreshold, readChunk: readChunkOpt} = options ?? {}
|
|
const readChunk: (offset: number, size: number) => Promise<Uint8Array> = readChunkOpt
|
|
? readChunkOpt
|
|
: ('encData' in encrypted
|
|
? (off, sz) => Promise.resolve((encrypted as EncryptedFileInfo).encData.subarray(off, off + sz))
|
|
: () => { throw new Error("uploadFile: readChunk required when encData is absent") })
|
|
const total = encrypted.chunkSizes.reduce((a, b) => a + b, 0)
|
|
const specs = prepareChunkSpecs(encrypted.chunkSizes)
|
|
|
|
// Pre-assign servers and group by server for parallel upload
|
|
const chunkJobs = specs.map((spec, i) => ({
|
|
index: i,
|
|
spec,
|
|
server: servers[Math.floor(Math.random() * servers.length)]
|
|
}))
|
|
const byServer = new Map<string, typeof chunkJobs>()
|
|
for (const job of chunkJobs) {
|
|
const key = formatXFTPServer(job.server)
|
|
if (!byServer.has(key)) byServer.set(key, [])
|
|
byServer.get(key)!.push(job)
|
|
}
|
|
|
|
// Upload groups in parallel, sequential within each group
|
|
const sentChunks: SentChunk[] = new Array(specs.length)
|
|
let uploaded = 0
|
|
await Promise.all([...byServer.values()].map(async (jobs) => {
|
|
for (const {index, spec, server} of jobs) {
|
|
const chunkNo = index + 1
|
|
const sndKp = generateEd25519KeyPair()
|
|
const rcvKp = generateEd25519KeyPair()
|
|
const chunkData = await readChunk(spec.chunkOffset, spec.chunkSize)
|
|
const chunkDigest = getChunkDigest(chunkData)
|
|
const fileInfo: FileInfo = {
|
|
sndKey: encodePubKeyEd25519(sndKp.publicKey),
|
|
size: spec.chunkSize,
|
|
digest: chunkDigest
|
|
}
|
|
const rcvKeysForChunk = [encodePubKeyEd25519(rcvKp.publicKey)]
|
|
const {senderId, recipientIds} = await createXFTPChunk(
|
|
agent, server, sndKp.privateKey, fileInfo, rcvKeysForChunk
|
|
)
|
|
await uploadXFTPChunk(agent, server, sndKp.privateKey, senderId, chunkData)
|
|
sentChunks[index] = {
|
|
chunkNo, senderId, senderKey: sndKp.privateKey,
|
|
recipientId: recipientIds[0], recipientKey: rcvKp.privateKey,
|
|
chunkSize: spec.chunkSize, digest: chunkDigest, server
|
|
}
|
|
uploaded += spec.chunkSize
|
|
onProgress?.(uploaded, total)
|
|
}
|
|
}))
|
|
const rcvDescription = buildDescription("recipient", encrypted, sentChunks)
|
|
const sndDescription = buildDescription("sender", encrypted, sentChunks)
|
|
let uri = encodeDescriptionURI(rcvDescription)
|
|
let finalRcvDescription = rcvDescription
|
|
const threshold = redirectThreshold ?? DEFAULT_REDIRECT_THRESHOLD
|
|
if (uri.length > threshold && sentChunks.length > 1) {
|
|
finalRcvDescription = await uploadRedirectDescription(agent, servers, rcvDescription)
|
|
uri = encodeDescriptionURI(finalRcvDescription)
|
|
}
|
|
return {rcvDescription: finalRcvDescription, sndDescription, uri}
|
|
}
|
|
|
|
function buildDescription(
|
|
party: "recipient" | "sender",
|
|
enc: EncryptedFileMetadata,
|
|
chunks: SentChunk[]
|
|
): FileDescription {
|
|
const defChunkSize = enc.chunkSizes[0]
|
|
return {
|
|
party,
|
|
size: enc.chunkSizes.reduce((a, b) => a + b, 0),
|
|
digest: enc.digest,
|
|
key: enc.key,
|
|
nonce: enc.nonce,
|
|
chunkSize: defChunkSize,
|
|
chunks: chunks.map(c => ({
|
|
chunkNo: c.chunkNo,
|
|
chunkSize: c.chunkSize,
|
|
digest: c.digest,
|
|
replicas: [{
|
|
server: formatXFTPServer(c.server),
|
|
replicaId: party === "recipient" ? c.recipientId : c.senderId,
|
|
replicaKey: encodePrivKeyEd25519(party === "recipient" ? c.recipientKey : c.senderKey)
|
|
}]
|
|
})),
|
|
redirect: null
|
|
}
|
|
}
|
|
|
|
async function uploadRedirectDescription(
|
|
agent: XFTPClientAgent,
|
|
servers: XFTPServer[],
|
|
innerFd: FileDescription
|
|
): Promise<FileDescription> {
|
|
const yaml = encodeFileDescription(innerFd)
|
|
const yamlBytes = new TextEncoder().encode(yaml)
|
|
const enc = encryptFileForUpload(yamlBytes, "")
|
|
const specs = prepareChunkSpecs(enc.chunkSizes)
|
|
const sentChunks: SentChunk[] = []
|
|
for (let i = 0; i < specs.length; i++) {
|
|
const spec = specs[i]
|
|
const chunkNo = i + 1
|
|
const server = servers[Math.floor(Math.random() * servers.length)]
|
|
const sndKp = generateEd25519KeyPair()
|
|
const rcvKp = generateEd25519KeyPair()
|
|
const chunkData = enc.encData.subarray(spec.chunkOffset, spec.chunkOffset + spec.chunkSize)
|
|
const chunkDigest = getChunkDigest(chunkData)
|
|
const fileInfo: FileInfo = {
|
|
sndKey: encodePubKeyEd25519(sndKp.publicKey),
|
|
size: spec.chunkSize,
|
|
digest: chunkDigest
|
|
}
|
|
const rcvKeysForChunk = [encodePubKeyEd25519(rcvKp.publicKey)]
|
|
const {senderId, recipientIds} = await createXFTPChunk(
|
|
agent, server, sndKp.privateKey, fileInfo, rcvKeysForChunk
|
|
)
|
|
await uploadXFTPChunk(agent, server, sndKp.privateKey, senderId, chunkData)
|
|
sentChunks.push({
|
|
chunkNo, senderId, senderKey: sndKp.privateKey,
|
|
recipientId: recipientIds[0], recipientKey: rcvKp.privateKey,
|
|
chunkSize: spec.chunkSize, digest: chunkDigest, server
|
|
})
|
|
}
|
|
return {
|
|
party: "recipient",
|
|
size: enc.chunkSizes.reduce((a, b) => a + b, 0),
|
|
digest: enc.digest,
|
|
key: enc.key,
|
|
nonce: enc.nonce,
|
|
chunkSize: enc.chunkSizes[0],
|
|
chunks: sentChunks.map(c => ({
|
|
chunkNo: c.chunkNo,
|
|
chunkSize: c.chunkSize,
|
|
digest: c.digest,
|
|
replicas: [{
|
|
server: formatXFTPServer(c.server),
|
|
replicaId: c.recipientId,
|
|
replicaKey: encodePrivKeyEd25519(c.recipientKey)
|
|
}]
|
|
})),
|
|
redirect: {size: innerFd.size, digest: innerFd.digest}
|
|
}
|
|
}
|
|
|
|
// -- Download
|
|
|
|
export interface RawDownloadedChunk {
|
|
chunkNo: number
|
|
dhSecret: Uint8Array
|
|
nonce: Uint8Array
|
|
body: Uint8Array
|
|
digest: Uint8Array
|
|
}
|
|
|
|
export interface DownloadRawOptions {
|
|
onProgress?: (downloaded: number, total: number) => void
|
|
concurrency?: number
|
|
}
|
|
|
|
export async function downloadFileRaw(
|
|
agent: XFTPClientAgent,
|
|
fd: FileDescription,
|
|
onRawChunk: (chunk: RawDownloadedChunk) => Promise<void>,
|
|
options?: DownloadRawOptions
|
|
): Promise<FileDescription> {
|
|
const err = validateFileDescription(fd)
|
|
if (err) throw new Error("downloadFileRaw: " + err)
|
|
const {onProgress, concurrency = 1} = options ?? {}
|
|
// Resolve redirect on main thread (redirect data is small)
|
|
if (fd.redirect !== null) {
|
|
console.log(`[AGENT-DBG] resolving redirect: outer size=${fd.size} chunks=${fd.chunks.length}`)
|
|
fd = await resolveRedirect(agent, fd)
|
|
console.log(`[AGENT-DBG] resolved: size=${fd.size} chunks=${fd.chunks.length} digest=${Array.from(fd.digest.slice(0, 16)).map(x => x.toString(16).padStart(2, '0')).join('')}…`)
|
|
}
|
|
const resolvedFd = fd
|
|
// Group chunks by server, sequential within each server, parallel across servers
|
|
let downloaded = 0
|
|
const byServer = new Map<string, typeof resolvedFd.chunks>()
|
|
for (const chunk of resolvedFd.chunks) {
|
|
const srv = chunk.replicas[0]?.server ?? ""
|
|
if (!byServer.has(srv)) byServer.set(srv, [])
|
|
byServer.get(srv)!.push(chunk)
|
|
}
|
|
await Promise.all([...byServer.entries()].map(async ([srv, chunks]) => {
|
|
const server = parseXFTPServer(srv)
|
|
for (const chunk of chunks) {
|
|
const replica = chunk.replicas[0]
|
|
if (!replica) throw new Error("downloadFileRaw: chunk has no replicas")
|
|
const seed = decodePrivKeyEd25519(replica.replicaKey)
|
|
const kp = ed25519KeyPairFromSeed(seed)
|
|
const raw = await downloadXFTPChunkRaw(agent, server, kp.privateKey, replica.replicaId)
|
|
console.log(`[AGENT-DBG] chunk=${chunk.chunkNo} body.len=${raw.body.length} expectedChunkSize=${chunk.chunkSize} digest=${_dbgHex(chunk.digest, 32)} body.byteOffset=${raw.body.byteOffset} body.buffer.byteLength=${raw.body.buffer.byteLength}`)
|
|
await onRawChunk({
|
|
chunkNo: chunk.chunkNo,
|
|
dhSecret: raw.dhSecret,
|
|
nonce: raw.nonce,
|
|
body: raw.body,
|
|
digest: chunk.digest
|
|
})
|
|
downloaded += chunk.chunkSize
|
|
onProgress?.(downloaded, resolvedFd.size)
|
|
}
|
|
}))
|
|
return resolvedFd
|
|
}
|
|
|
|
export async function downloadFile(
|
|
agent: XFTPClientAgent,
|
|
fd: FileDescription,
|
|
onProgress?: (downloaded: number, total: number) => void
|
|
): Promise<DownloadResult> {
|
|
const chunks: Uint8Array[] = []
|
|
const resolvedFd = await downloadFileRaw(agent, fd, async (raw) => {
|
|
chunks[raw.chunkNo - 1] = decryptReceivedChunk(
|
|
raw.dhSecret, raw.nonce, raw.body, raw.digest
|
|
)
|
|
}, {onProgress})
|
|
const totalSize = chunks.reduce((s, c) => s + c.length, 0)
|
|
if (totalSize !== resolvedFd.size) throw new Error("downloadFile: file size mismatch")
|
|
const digest = sha512Streaming(chunks)
|
|
if (!digestEqual(digest, resolvedFd.digest)) throw new Error("downloadFile: file digest mismatch")
|
|
return processDownloadedFile(resolvedFd, chunks)
|
|
}
|
|
|
|
async function resolveRedirect(
|
|
agent: XFTPClientAgent,
|
|
fd: FileDescription
|
|
): Promise<FileDescription> {
|
|
const plaintextChunks: Uint8Array[] = new Array(fd.chunks.length)
|
|
for (const chunk of fd.chunks) {
|
|
const replica = chunk.replicas[0]
|
|
if (!replica) throw new Error("resolveRedirect: chunk has no replicas")
|
|
const server = parseXFTPServer(replica.server)
|
|
const seed = decodePrivKeyEd25519(replica.replicaKey)
|
|
const kp = ed25519KeyPairFromSeed(seed)
|
|
const data = await downloadXFTPChunk(agent, server, kp.privateKey, replica.replicaId, chunk.digest)
|
|
plaintextChunks[chunk.chunkNo - 1] = data
|
|
}
|
|
const totalSize = plaintextChunks.reduce((s, c) => s + c.length, 0)
|
|
if (totalSize !== fd.size) throw new Error("resolveRedirect: redirect file size mismatch")
|
|
const digest = sha512Streaming(plaintextChunks)
|
|
if (!digestEqual(digest, fd.digest)) throw new Error("resolveRedirect: redirect file digest mismatch")
|
|
const {content: yamlBytes} = processDownloadedFile(fd, plaintextChunks)
|
|
const yamlStr = new TextDecoder().decode(yamlBytes)
|
|
const innerFd = decodeFileDescription(yamlStr)
|
|
const innerErr = validateFileDescription(innerFd)
|
|
if (innerErr) throw new Error("resolveRedirect: inner description invalid: " + innerErr)
|
|
if (innerFd.size !== fd.redirect!.size) throw new Error("resolveRedirect: redirect size mismatch")
|
|
if (!digestEqual(innerFd.digest, fd.redirect!.digest)) throw new Error("resolveRedirect: redirect digest mismatch")
|
|
return innerFd
|
|
}
|
|
|
|
// -- Delete
|
|
|
|
export async function deleteFile(agent: XFTPClientAgent, sndDescription: FileDescription): Promise<void> {
|
|
for (const chunk of sndDescription.chunks) {
|
|
const replica = chunk.replicas[0]
|
|
if (!replica) throw new Error("deleteFile: chunk has no replicas")
|
|
const server = parseXFTPServer(replica.server)
|
|
const seed = decodePrivKeyEd25519(replica.replicaKey)
|
|
const kp = ed25519KeyPairFromSeed(seed)
|
|
await deleteXFTPChunk(agent, server, kp.privateKey, replica.replicaId)
|
|
}
|
|
}
|
|
|
|
// -- Internal
|
|
|
|
function _dbgHex(b: Uint8Array, n = 8): string {
|
|
return Array.from(b.slice(0, n)).map(x => x.toString(16).padStart(2, '0')).join('')
|
|
}
|
|
|
|
function digestEqual(a: Uint8Array, b: Uint8Array): boolean {
|
|
if (a.length !== b.length) return false
|
|
let diff = 0
|
|
for (let i = 0; i < a.length; i++) diff |= a[i] ^ b[i]
|
|
return diff === 0
|
|
}
|