2015-11-10 08:15:11 +00:00
|
|
|
{% extends "global/layout.html" %}
|
|
|
|
{% block title %}I2P Specification Documents{% endblock %}
|
|
|
|
{% block content %}
|
2016-04-03 11:30:29 +00:00
|
|
|
<p>
|
2015-11-10 08:15:11 +00:00
|
|
|
This page provides the specifications for various components of the I2P network
|
|
|
|
and router software. These are living documents, and the specifications are
|
2016-04-03 11:30:29 +00:00
|
|
|
updated as modifications are made to the network and software. The proposal
|
|
|
|
documents that track changes to these specifications can be viewed
|
|
|
|
<a href="{{ url_for('proposal_index') }}">here</a>.
|
|
|
|
</p>
|
2015-11-10 08:15:11 +00:00
|
|
|
|
|
|
|
<ul><li>
|
|
|
|
"Last updated" is the last date when the specification given within a document
|
|
|
|
was altered in any way, except for changes to the "accurate for" information.
|
|
|
|
</li><li>
|
2022-01-27 07:19:12 -05:00
|
|
|
The "accurate for" column gives the API version of the I2P network and reference
|
2015-11-10 08:15:11 +00:00
|
|
|
Java implementation that the document is verified to be valid for. Because the
|
|
|
|
documents are usually only updated when changes are made, the listed versions
|
|
|
|
can sometimes be several releases behind. This does not mean that documents with
|
|
|
|
old listed versions are necessarily inaccurate, but small differences may creep
|
|
|
|
in during the course of development. Periodic reviews are conducted to update
|
|
|
|
the "accurate for" information.
|
|
|
|
</li></ul>
|
|
|
|
|
2021-05-04 11:05:26 -04:00
|
|
|
<p>{% trans trac='https://i2pgit.org/i2p-hackers/i2p.www/issues' -%}
|
2016-04-01 12:08:41 +00:00
|
|
|
The I2P Project is committed to maintaining accurate, current documentation.
|
|
|
|
If you find any inaccuracies in the documents linked below, please
|
|
|
|
<a href="{{ trac }}">enter a ticket identifying the problem</a>.
|
|
|
|
{%- endtrans %}</p>
|
|
|
|
|
2015-11-10 08:15:11 +00:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Title</th>
|
2016-04-01 23:28:07 +00:00
|
|
|
<th>Category</th>
|
2015-11-10 08:15:11 +00:00
|
|
|
<th>Last updated</th>
|
|
|
|
<th>Accurate for</th>
|
|
|
|
<th>Link</th>
|
|
|
|
</tr>
|
|
|
|
{% for spec in specs %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ spec.title }}</td>
|
2016-04-01 23:28:07 +00:00
|
|
|
<td>{{ spec.category }}</td>
|
2015-11-10 08:15:11 +00:00
|
|
|
<td><time>{{ spec.lastupdated }}</time></td>
|
|
|
|
<td>{{ spec.accuratefor }}</td>
|
|
|
|
<td>
|
2015-11-12 09:38:30 +00:00
|
|
|
<a href="{{ url_for('spec_show', name=spec.name) }}">HTML</a> |
|
|
|
|
<a href="{{ url_for('spec_show_txt', name=spec.name) }}">TXT</a>
|
2015-11-10 08:15:11 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
2016-04-01 12:08:41 +00:00
|
|
|
|
|
|
|
<h3>Other specification documents</h3>
|
|
|
|
|
2022-01-27 07:19:12 -05:00
|
|
|
Current specifications: These may eventually be migrated to the new format.
|
2016-04-01 12:08:41 +00:00
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li><a href="{{ site_url('docs/how/elgamal-aes') }}">{{ _('ElGamal/AES+SessionTags') }}</a></li>
|
2016-04-01 12:10:27 +00:00
|
|
|
<li><a href="{{ site_url('docs/api/i2pcontrol') }}">I2PControl</a></li>
|
2016-04-01 12:08:41 +00:00
|
|
|
<li><a href="{{ site_url('docs/api/samv3') }}">SAM v3</a></li>
|
2016-04-01 12:10:27 +00:00
|
|
|
<li><a href="{{ site_url('docs/applications/bittorrent') }}">{{ _('Bittorrent') }}</a></li>
|
2021-01-23 21:06:01 -05:00
|
|
|
<li><a href="{{ site_url('docs/naming') }}">{{ _('Naming and Address Book') }}</a></li>
|
2016-04-01 12:08:41 +00:00
|
|
|
</ul>
|
2022-01-27 07:19:12 -05:00
|
|
|
|
|
|
|
Obsolete specifications:
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li><a href="{{ site_url('docs/transport/ntcp') }}">NTCP</a></li>
|
|
|
|
<li><a href="{{ site_url('docs/api/bob') }}">BOB</a></li>
|
|
|
|
</ul>
|
|
|
|
|
2015-11-10 08:15:11 +00:00
|
|
|
{% endblock %}
|