mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-22 10:01:45 +00:00
Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
<h3>{% trans "Migrate to ECC" %}</h3>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
Your OpenVPN installation is currently using RSA. Switching to the
|
|
modern Elliptic Curve Cryptography improves speed of establishing a
|
|
connection and security. This operation is irreversible. It should only take
|
|
a few minutes on most single board computers.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
All new installations of OpenVPN on {{ box_name }} will
|
|
use ECC by default. We recommend migrating as soon as possible.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<p class="bg-warning">
|
|
{% blocktrans trimmed %}
|
|
<b>Warning:</b> Existing client profiles will be invalidated by this operation. All
|
|
OpenVPN users on {{ box_name }} must download their new profiles. OpenVPN
|
|
clients compatible with ECC should be used to connect to this server.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<form class="form form-ecc" method="post"
|
|
action="{% url 'openvpn:ecc' %}">
|
|
{% csrf_token %}
|
|
|
|
<input type="submit" class="btn btn-primary"
|
|
value="{% trans "Migrate" %}"/>
|
|
</form>
|