jai-singhal / digiLocker

Blockchain ethereum based storing documents.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Digital locker using Ethereum Blockchain

Research Paper

View the paper here

Cite it

@INPROCEEDINGS{Sing2201:DD,
AUTHOR="Jai Singhal and Ankit Gautam and Ashutosh Bhatia and Ankit Agrawal and
Rekha Kaushik",
TITLE="{DD-Locker:} Blockchain Based Decentralized Personal Document Locker",
BOOKTITLE="2022 International Conference on Information Networking (ICOIN) (ICOIN
2022)",
ADDRESS="Jeju Island, Korea (South)",
DAYS=11,
MONTH=jan,
YEAR=2022,
KEYWORDS="Blockchain; Ethereum; Dapps; Smart Contract",
ABSTRACT="Document verification is the first step whenever we enter any organization
or institute. In any organization, it is essential to track, verify, and
check the person's background who will become a part of the organization.
This process
is very time-consuming and hectic for both parties involved. Various
governments provide cloud-based digital locker services for the citizens
storing the public document on a centralized server. But due to its
centralized nature, this type of service is weak against information
breaches and Denial of Service (DoS) attacks. Also, there are some privacy
concerns with such centralized digital locker services as the stored
documents may contain users' crucial personal information. This paper
proposes a blockchain-based digital locker in a decentralized application
using Ethereum Blockchain to securely store personal documents with high
availability. The proposed solution also verifies documents with ease,
confidentiality, access control, data privacy, authenticity, and
maintaining the integrity of documents."
}

How to setup

Install the Metamask

Download the metamask extension from: https://metamask.io/

Ethereum account and network

We have used Rinkeby Test network, and deployed the contract on the same network. So to run the application, you may required to get some free ethers from here.

Clone repository

git clone https://github.com/jai-singhal/digiLocker

# cd to digilocker
cd digiLocker

create virtualenv

pip install virtualenv

# create virtualenv in digilocker dir
virtualenv .

# activate the virtualenv
./Scripts/activate

Install required packages

pip install -r requirements.txt

Run the server

python main.py

System Design

Resident Perspective

Resident

Requestor Perspective

Requestor

Auth Activity digram

auth

Document upload and permission Grant Activity digram

doc

Configuration

config.py

Please add the config.py to your main directory with your credentials Sample config.py

# config.py
APPCONFIG = {
    "APP_SECRETKEY":"",
    "DROPBOX_KEY":"",
    "DROPBOX_SECRET":"",
    "DROPBOX_ACCESS_TYPE":"",
    "DROPBOX_ACCESS_TOKEN":"",
    "MAIL_USERNAME":"",
    "MAIL_PASSWORD":"",
    "MAIL_DEFAULT_SENDER":"",
    "MAIL_SENDER":"",
    "SECRET_KEY": b"",
    "SERVER_BASE_ADDRESS": "http://127.0.0.1:5000",
    "VERIFICATION_CODES": [
        "12345",
        # your verification codes here.
    ]
}

About

Blockchain ethereum based storing documents.


Languages

Language:JavaScript 62.9%Language:Python 15.0%Language:HTML 14.5%Language:Solidity 5.1%Language:CSS 2.5%