summaryrefslogtreecommitdiff
path: root/public/index.html
blob: 6033be0d16562140b37b3e177f671dcbed801339 (plain)
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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Arti – A Tor implementation in Rust</title>
    <style>
      .logo {
          width: 60%;
          margin: auto;
          display: block;
      }
      .body {
          width: 60%;
          margin: auto;
          font-family: 'Source Sans Pro', sans-serif;
      }
      .links {
          margin: 3em auto auto auto;
          width: 60%;
      }
      .link {
          color: white;
          background: blueviolet;
          padding: 1em;
          margin: 0.8em;
          text-align: center;
          font-weight: bold;
      }
      .link :link {
          color: white;
      }
      .link :visited {
          color: #eee;
      }
    </style>
    </head>
  <body>
    <img src="./arti_logo.png" class="logo" alt="Arti logo">
    <div class="body">
    <p>Arti is a project to implement
   the <a href="https://www.torproject.org/">Tor</a> anonymity protocols in
   the
      <a href="https://www.rust-lang.org/">Rust</a> programming language.
    </p>
    <p>Currently, Arti provides a working Tor client.
      There is
      <a href="https://gitlab.torproject.org/tpo/core/arti/-/blob/main/README.md#hidden-service-onion-service-client-support">initial support</a> for connecting to onion services,
      but more work is needed for equivalent security to the C tor
      implementation.
      Until Arti is more mature, we
      recommend it for experimental use only.
    </p>

    <p>The latest Arti release is <a href="https://blog.torproject.org/arti_1_4_0_released/">1.4.0</a>.
    </p>

      <div class="links">
    <p class="link"><a href="https://gitlab.torproject.org/tpo/core/arti/-/blob/main/README.md">Latest README</a></p>
    <p class="link"><a href="https://gitlab.torproject.org/tpo/core/arti">Source repository</a></p>
    <p class="link"><a href="https://tpo.pages.torproject.net/core/doc/rust/arti_client/index.html">API documentation</a></p>
    <p class="link"><a href="https://tpo.pages.torproject.net/core/arti/coverage">Coverage reports</a></p>
    <p class="link"><a href="https://gitlab.torproject.org/tpo/core/arti/-/blob/main/CONTRIBUTING.md">How to contribute</a></p>
    <p class="link"><a href="https://gitlab.torproject.org/tpo/core/arti/-/blob/main/doc/FAQ.md">Frequently asked questions</a></p>
    <p class="link"><a href="https://www.torproject.org/">More about Tor</a></p>
    </div>
      </div>
  </body>
</html>