aboutsummaryrefslogtreecommitdiffstats
path: root/site/about.html
blob: 2b41f4f7a41348f2b717180a2c40240d0df7b33f (plain) (blame)
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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>About — MeshBay</title>
  <link rel="stylesheet" href="/assets/site.css">
</head>
<body>

  <nav class="site-nav">
    <a class="site-nav-brand" href="/">MeshBay</a>
    <div class="site-nav-links">
      <a href="/about.html">About</a>
      <a href="/downloads.html">Downloads</a>
      <a href="/app">Open App</a>
    </div>
  </nav>

  <div class="page">
    <h1>About MeshBay</h1>

    <p>MeshBay is a decentralized, peer-to-peer platform for file sharing,
       video streaming, and group messaging. It combines identity federation
       (via Mesh Hubs) with truly peer-to-peer data exchange (via Mesh Nodes).</p>

    <h2>Architecture</h2>
    <p>The system has three components:</p>
    <ul>
      <li><strong>Mesh Hub</strong> — a lightweight identity authority and group registry.
          It stores user accounts and group metadata, but never touches content.</li>
      <li><strong>Mesh Node</strong> — runs on the host user's machine. It stores and serves
          all files, streams, and chat messages directly to group members.</li>
      <li><strong>Mesh Client</strong> — a web browser or Android app. Connects directly to
          nodes for all data transfer. The hub is never in the data path.</li>
    </ul>

    <h2>Security</h2>
    <p>Private groups use end-to-end encryption with ChaCha20-Poly1305.
       Authentication uses Ed25519 signed JWTs. Key exchange is based on
       X25519 ECDH with HKDF. Passwords are hashed with Argon2id (64 MiB).</p>

    <h2>Open Source</h2>
    <p>MeshBay is open source. The code is available on
       <a href="https://github.com/cbesson/meshbay">GitHub</a>.</p>

    <h2>Contact</h2>
    <p>For questions or bug reports, open an issue on the
       <a href="https://github.com/cbesson/meshbay/issues">GitHub issue tracker</a>.</p>
  </div>

  <footer class="site-footer">
    <a href="/">Home</a> &middot;
    <a href="/downloads.html">Downloads</a> &middot;
    <a href="https://github.com/cbesson/meshbay">GitHub</a>
  </footer>

</body>
</html>