22 lines
1020 B
HTML
22 lines
1020 B
HTML
{% extends "_layout.html" %}
|
|
{% block title %}How Does It Work{% endblock %}
|
|
{% block content %}
|
|
<h1>How does I2P work?</h1>
|
|
<ul class="helplist">
|
|
<li><a href="how_intro">Intro</a></li>
|
|
<li><a href="how_threatmodel">Threat model</a></li>
|
|
<li><a href="how_tunnelrouting">Tunnel routing</a></li>
|
|
<li><a href="how_garlicrouting">Garlic routing</a></li>
|
|
<li><a href="how_networkdatabase">Network database</a></li>
|
|
<li><a href="how_peerselection">Peer selection</a></li>
|
|
<li>
|
|
<a href="how_cryptography.html">Cryptography</a> » <a href="how_elgamalaes.html">ElGamal / AES+SessionTag</a>
|
|
</li>
|
|
<li><a href="how_networkcomparisons">Network comparisons</a></li>
|
|
</ul>
|
|
<center><div class="underline"></div>
|
|
<font color="#c00"><b>Warning!</b> Some of the documents linked here are out of date and
|
|
need to be updated to correctly document the current network operation. If you'd like to help bring them up to date, please see the <a href="getinvolved.html">getting involved</a> page!</font>
|
|
</center>
|
|
{% endblock %}
|