12 lines
397 B
HTML
12 lines
397 B
HTML
{% extends "_layout.html" %}
|
|
{% block title %}Glossary{% endblock %}
|
|
{% block content %}
|
|
This page lists often-used terminology when discussing I2P and cryptography.
|
|
<table>
|
|
<tr>
|
|
<td>I2P</td>
|
|
<td>Invisible Internet Project: a project meant to provide an anonymity layer, so user can communicate anonymously using a range of applications.</td>
|
|
</tr>
|
|
</table>
|
|
{% endblock %}
|