aboutsummaryrefslogtreecommitdiff
path: root/template/about.html.j2
blob: 3e77b52b73b19dcf844274cbbc778e335c2f356c (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
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
{% extends "common/base.j2" %}
{% block body_content %}
<div class="container">
  <article>
    <section>
      <h3>{{ _("About GNUnet") }}</h3>
      <p>
	{% trans %}
	GNUnet is an alternative network stack for building secure,
	decentralized and privacy-preserving distributed applications.
	Our goal is to replace the old insecure Internet protocol stack. Starting
	from an application for secure publication of files, it has grown to
	include all kinds of basic protocol components and applications
	towards the creation of a GNU internet.
	{% endtrans %}
	<br>
	{% trans %}
	Today, the actual use and thus the social requirements for a global
	network differs widely from those goals of 1970. While the Internet
	remains suitable for military use, where the network equipment is
	operated by a command hierarchy and when necessary isolated from the
	rest of the world, the situation is less tenable for civil society.
	{% endtrans %}
	<br>
	{% trans %}
	Due to fundamental Internet design choices, Internet traffic can be
	misdirected, intercepted, censored and manipulated by hostile routers
	on the network. And indeed, the modern Internet has evolved exactly
	to the point where, as Matthew Green put it, ``the network is
	hostile''.
	{% endtrans %}
	<br>	
	{% trans %}
	We believe liberal societies need a network architecture that uses the
	anti-authoritarian decentralized peer-to-peer paradigm and
	privacy-preserving cryptographic protocols. The goal of the GNUnet
	project is to provide a Free Software realization of this ideal.
	{% endtrans %}
	<br>
	{% trans %}
	Specifically, GNUnet tries to follow the following design principles,
	in order of importance:
	{% endtrans %}
	<ol>	
	<li>		
	  {% trans %}
	    GNUnet must be implemented as <a href="https://www.gnu.org/philosophy/free-sw.html">Free Software</a>.
	  {% endtrans %}
	</li>
	<li>{{ _("GNUnet must minimize the amount of personally identifiable information exposed.") }}</li>
	<li>{{ _("GNUnet must be fully distributed and resilient to external attacks and rogue participants.") }}</li>
	<li>{{ _("GNUnet must be self-organizing and not depend on administrators or centralized infrastructure.") }}</li>
	<li>{{ _("GNUnet must inform the user which other participants have to be trusted when establishing private communications.") }}</li>
	<li>{{ _("GNUnet must be open and permit new peers to join.") }}</li>
	<li>{{ _("GNUnet must support a diverse range of applications and devices.") }}</li>
	<li>{{ _("GNUnet must use compartmentalization to protect sensitive information.") }}</li>
	<li>{{ _("The GNUnet architecture must be resource efficient.") }}</li>
	<li>{{ _("GNUnet must provide incentives for peers to contribute more resources than they consume.") }}</li>
	</ol>
      </p>
      <h4>{{ _("Current funding") }}</h3>
      <p>
	{% trans %}
        We currently do not have any grants. All work is done by volunteers.
	{% endtrans %}
	<br>
	{% trans %}
        We are grateful for free hosting offered by the following organizations:
	{% endtrans %}
        <ul>
          <li><a href="https://www.tum.de/">Technische Universit&auml;t M&uuml;nchen</a></li>
          <li><a href="https://www.inria.fr/">Inria</a></li>
          <li><a href="https://www.bfh.ch/">Berner Fachhochschule</a></li>
          <li><a href="https://www.gnu.org/">The GNU Project</a></li>
	</ul>
      </p>
      <h4>{{ _("Past funding") }}</h3>
      <p>
	{% trans %}
        We are grateful for past funding from the following organizations:
	{% endtrans %}
        <ul>
          <li>
            <p>
            <a href="https://renewablefreedom.org/">Renewable Freedom Foundation</a><br>
            <img src="{{ url('static/images/rff_logo.png') }}" alt="RFF logo">
            </p>
          </li>
          <li>
            <p>
            <a href="https://cordis.europa.eu/fp7/">European Commission (FP7)</a><br>
            <img src="{{ url('static/images/fp7_logo.jpg') }}" alt="FP7 logo">
            </p>
          </li>
          <li>
            <p>
            <a href="http://www.dfg.de/">Deutsche Forschungsgemeinschaft</a><br>
            <img src="{{ url('static/images/dfg_logo.gif') }}" alt="DFG logo">
            </p>
          </li>
          <li>
            <p>
            <a href="https://nlnet.nl/">NLnet Foundation</a><br>
            <img src="{{ url('static/images/nlnet_logo.gif') }}" alt="NLnet logo">
            </p>
          </li>
        </ul>
      </p>
    </section>
  </article>
</div>
{% endblock body_content %}