Implemented full end-to-end encryption and decryption of an event using trustee public and secret keys. This required modification of the NodeJS crypto server to receive post data from the crypto_rpc py methods and for combining SKs together. Additionally, the new binary voting encoding scheme has been implemented for encryption and decryption of the event. General UI improvements have been made and as well as some other bug fixes

This commit is contained in:
vince0656 2018-07-07 09:52:47 +01:00
parent 0c354cd542
commit e33b91f852
23 changed files with 809 additions and 446 deletions

View file

@ -0,0 +1,19 @@
{% extends "polls/event_detail_base.html" %}
{% load staticfiles %}
{% load bootstrap3 %}
{% block event_nav_launch %}active{% endblock %}
{% block event_content %}
<br/>
<span><strong>Trustee Keys Received:</strong> {{ event.trustee_keys.count }} / {{ event.users_trustees.count }}</span>
<br />
<br/>
<span><strong>Human-readable Event ID:</strong> {{ event.EID_hr }} </span>
<br />
<br/>
<span><strong>Group Param ID:</strong> {{ event.EID_crypto }} </span>
<br />
<br/>
<span><strong>Public key:</strong> {{ event.public_key }} </span>
{% endblock %}