• Stars
    star
    273
  • Rank 150,780 (Top 3 %)
  • Language
    PHP
  • License
    GNU General Publi...
  • Created about 7 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An e-voting system based on blockchain using ring signature

BlockVotes

An e-voting system based on blockchain using ring signature

Demo Video: https://www.youtube.com/watch?v=4c6pQg3q4Vc

Slides: blockvotes.pdf

Topic

E-voting systems will be beneficial to all people who are involved in elections. For example, administrators can improve operation of tasks for elections, and voters can vote in an election anytime and anywhere. In addition, ideal e-voting systems have transparency, completeness (only voters have the right to vote and their votes are correctly counted), and verifiability (voters can check that their vote is correctly counted), and therefore it is better than existing voting system.

Digital voting is the use of electronic devices, such as voting machines or an internet browser, to cast votes. These are sometimes referred to as e-voting whenvoting using a machine in a polling station, and e-voting when using a web browser.

Security of digital voting is always the biggest concern when considering to implement a digitalvoting system. With such monumental decisions at stake, there can be no doubt about the system’s ability to secure data and defend against potential attacks. One way the security issues can be potentially solved is through the technology of blockchains.

Blockchain technology originates from the underlying architectural design of the crypto currency bitcoin. It is a form of distributed database where records take the form of transactions, a block is a collection of these transactions. With the use of blockchains a secure and robust system for digital voting can be devised.

To solve the problem, I propose a way to use the ring signature and the blockchain to ensure the features of the e-voting. The blockchain technology is characterized by decentralization, irreversibility, distribution of joint accounting, asymmetric encryption and data-security.

Blockchain

The blockchain can be described as an immutable, cumulative ledger, with consensus protocol working to maintain this ledger of all valid transactions on every node in the network.

OP_RETURN

OP_RETURN is a script opcode used to mark a transaction output as invalid. Since any outputs with OP_RETURN are provably unspendable, OP_RETURN outputs can be used to burn bitcoins.

Ring Signature

  1. A group of entities each have public/private key pairs, (P1, S1), (P2, S2), ..., (Pn, Sn).
  2. a ring signature: σ = (m, Si, P1,P2,……,Pn)
  3. Anyone can check the validity of a ring signature given σ, m, and the public keys involved, P1, ..., Pn

Tools & Framework

The Protocol

Please see the thesis.

Wu, Yifan. "An E-voting System based on Blockchain and Ring Signature." Master. University of Birmingham (2017).

Instruction

To run the whole system, there are a lot works to do.

Recommended Running Environment

  1. Operation System: Mac OS X or Linux or Windows
  2. Apache ‎2.4.27 or Nginx 1.12.1
  3. MySQL 5.7.19 (at least 5.4)
  4. PHP ‎7.1.8 (at least 7.0)
  5. php7.0-gmp
  6. composer

php7.0-gmp

php7.0-gmp is a package used for the Elliptic Curve Digital Signature Algorithm (ECDSA). If you are using the Linux, please do the following things.

To install GMP on PHP7 on Ubuntu:

Run: sudo apt-get install php7.0-gmp

And add the following to php.ini:

extension=php_gmp.so

To install GMP on PHP7 on Mac OS X:

Run:

brew tap homebrew/dupes
brew tap homebrew/versions
brew tap homebrew/homebrew-php
brew install php71
brew install php71-gmp

And add the following to php.ini:

extension=php_gmp.so

To nstall GMP on PHP7 on Windows:

uncomment ;extension=php_gmp.dll in php.ini

Apache configuration

Ensure your .htaccess and index.php files are in the same public-accessible directory. The .htaccess file should contain this code:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]

Make sure your Apache virtual host is configured with the AllowOverride option so that the .htaccess rewrite rules can be used:

AllowOverride All

Nginx configuration

This is an example Nginx virtual host configuration for the domain example.com. It listens for inbound HTTP connections on port 80. It assumes a PHP-FPM server is running on port 9000. You should update the server_name, error_log,access_log, and root directives with your own values. The root directive is the path to your application’s public document root directory; your Slim app’s index.phpfront-controller file should be in this directory.

server {
    listen 80;
    server_name example.com;
    index index.php;
    error_log /path/to/example.error.log;
    access_log /path/to/example.access.log;
    root /path/to/public;

    location / {
        try_files $uri /index.php$is_args$args;
    }

    location ~ \.php {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param SCRIPT_NAME $fastcgi_script_name;
        fastcgi_index index.php;
        fastcgi_pass 127.0.0.1:9000;
    }
}

(reference: https://www.slimframework.com/docs/start/web-servers.html)

For the whole project, directory public is the entrance of the system. If you can not open the page, please check it if is configured correctly in the Nginx or Apache.

BlockVotes configuration

To run the system, some critical but private information are not uploaded by gitingore file. Please add the .env file into the root of this project directory.

DB_DRIVER=mysql
DB_HOST=127.0.0.1
DB_DATABASE=blockvotes
DB_USERNAME=root
DB_PASSWORD=
DB_PORT=3306

STMP_SERVER=smtp.gmail.com
STMP_PORT=465
[email protected]
STMP_PASSWORD=password

Database

The sample SQL file is generated and uploaded as the file blockvotes.sql , please import it to MySQL.

Composer

composer is a dependency management tool for PHP. Please ensure all dependencies has been installed before running the system

php composer.phar install

Screenshot

More Repositories

1

rpi-TempRuntime

基于树莓派3B,DHT11/DHT22,LCD1602的一个实时温度湿度检测系统
JavaScript
118
star
2

CoinOnline

A Cryptocurrency/Blockchain wallet app based on React Native
JavaScript
61
star
3

ZhihuAPI

基于phpQuery的知乎API 接口
PHP
22
star
4

otrchat

😈 An end-to-end encrypted chat system based on the OTR protocol
Go
20
star
5

NUC5i5RYH-DSDT-Patch

DSDT patches for OS X on NUC5i5RYH
Rich Text Format
20
star
6

ppd

🏄 拍拍哒投资系统——基于ThinkPHP的投资分析、真实模拟平台
PHP
13
star
7

SNSTools

社工必备工具箱 Social engineering tools for SNS websites
Python
12
star
8

AwesomeGithub

☕️ Automatically find and output the awesome repo your friends staring or forking in the dashborad
Python
9
star
9

PejServer

一个远程管理计算机工具箱,可以远程控制计算机锁屏、查看截图、关机、结束进程、虚拟机开机操作
JavaScript
6
star
10

EI-EmailSearcher

自动搜索EI期刊指定关键字的所有文章的作者的小工具

Python
5
star
11

chatroom

✨ An AES-256 encrypted chatroom server & client based on UDP
Go
5
star
12

BrainfuckIDE

Online Brainfuck IDE build based on React and Redux
JavaScript
5
star
13

traefik-docker-compose

3
star
14

ZhihuFinder

本py程序可推送特别关注的人的最新动态,push到邮箱里
Python
3
star
15

RustExercise

Rust Exercises
Rust
2
star
16

paper-manager-vue

A static thesis management single web page on GitHub Pages
Vue
2
star
17

Blog

旧博客文章
Python
2
star
18

yfgeek.github.io

EJS
2
star
19

DreamyAdmin

Free Admin Control Panel Theme Based On Bootstrap
CSS
2
star
20

dophin-os

🐬An operating system implemented by myself.
C
2
star
21

nginx-conf-ownCloud

ownCloud的nginx配置参考文件,自写,配置成功
1
star
22

NOIP

Some Noip projects written in high school.
Pascal
1
star
23

WP-theme-MetroGeek2

A WordPress theme by Ivan
CSS
1
star
24

tvplayer

Vue
1
star
25

goober

🥜一个docker的轮子
Go
1
star