Giter Site home page Giter Site logo

zhangpeihao / darkid Goto Github PK

View Code? Open in Web Editor NEW

This project forked from arnaucube/darkid-prototype

0.0 2.0 0.0 14 MB

Blockchain based anonymous distributed ID system

License: GNU General Public License v3.0

JavaScript 25.56% CSS 0.14% HTML 21.96% Go 50.06% Shell 2.28%

darkid's Introduction

darkID: A proof of concept of an anonymous decentralized identification system based on blockchain

Blockchain based anonymous decentralized ID system

( Full slides in: https://github.com/arnaucode/darkID/blob/master/darkID-presentation.pdf )

1.- Main concept

The main idea behind darkID is to implement a proof of concept of a decentralized system that allows platforms to identify verified users, but ensuring their anonymity. The main point, is to ensure anonymity, but at the same time, allow users to verify their identity, to ensure that no fake accounts are being used.

2.- How it works

  • Verify the non anonymous ID of an user
    • Based on the: username, email, phone, ID card, etc
  • From a logged and verified user, generate an anonymous darkID (Public Key, and save the Private Key into the storage), and get that darkID signed by an authority (serverIDsigner), with high reputation, and without knowing what is signing, to ensure the anonymity of the user
  • Once the darkID (Public Key) is signed by an authority server, add the darkID to the blockchain (ethereum, or some other)
  • Use the darkID to authenticate in platforms (just need to point the darkID reference in the blockchain), and the platform will send a challenge to the user, to resolve it with the Private Key assigned to the darkID from the darkID desktop app.
type DarkID struct {
	ID             string         `json:"id"`
	PrivK          string         `json:"privK"` //path of the PrivK file
	PubK           string         `json:"pubK"`  //path of the PubK file
	PublicKey      string         `json:"publicKey"`
	Date           time.Time      `json:"date"`
	Hashed         []byte         `json:"hashed"`
	UnblindedSig   []byte         `json:"unblindedsig"`
	Verified       bool           `json:"verified"`
	ServerVerifier *rsa.PublicKey `json:"serververifier"`
	SignerID       string         `json:"signerid"`
	BlockchainRef  string         `json:"blockchainref"`
}

2.1.- Infraestructure

network

2.2.1.- serverIDsigner

  • The server where the user creates a non anonymous account
  • Also is the server that blind signs the anonymous ID of the users
  • This server must be a recognized authority, or based on some reputation system. As only the reliable serverIDsigner will be used by the users to trust their ID validation
  • The serverIDsigner, can be different servers, based on a public reputation, where the users trust the servers that their are using to verify their darkIDs.

2.2.2.- ethereum Smart Contract

Where the darkID is stored. In this case, is a very simple smart contract.

2.2.3.- Desktop app

An electron desktop app implemented in Angularjs and Go lang.

screenshot

screenshot

screenshot

2.2.- Step by step process

  • Once all the nodes of the network are running, a new user can connect to the serverIDsigner.
  • The user registers a non anonymous user (using email, phone, password, etc), and performs the login with that user
  • The user, locally, generates a RSA key pair (private key & public key)
  • The user blinds his Public-Key with the serverIDsigner Public-Key
  • The user's Public-Key blinded, is sent to the serverIDsigner
  • The serverIDsigner Blind Signs the Public-Key blinded from the user, and returns it to the user
  • The user unblinds the Public-Key signed by the serverIDsigner, and now has the Public-Key Blind Signed by the serverIDsigner
  • The user sends the Public-Key blind signed to the p2p network
  • The peers verify that the Public-Key Blind Signed is correctly signed by the serverIDsigner, if it is, they add the Public-Key to the Ethereum Blockchain, inside a new block

creation

  • Then, when the user wants to login into a platform, just needs to put his Public-Key
  • The platform goes to the Ethereum Blockchain, to check if this Public-Key is registered in the blockchain
  • The platform sends a message encrypted with the user Public-Key, and the user returns the message decrypted with the Private-Key, to verify that is the owner of that Public-Key

login

The user Private Keys are stored only in the user local directory 'darkID/keys'.

3.- Cryptography

3.1.- RSA encryption system

https://en.wikipedia.org/wiki/RSA_cryptosystem

  • Public parameters: (e, n)
  • Private parameters: (d, p, q, phi, sigma)
  • Public-Key = (e, n)
  • Private-Key = (d, n)
  • Encryption: rsa
  • Decryption: rsa

3.2.- Blind signature process

https://en.wikipedia.org/wiki/Blind_signature

  • m is the message (in our case, is the Public-Key of the user to be blinded) rsa

  • serverIDsigner blind signs m' rsa

  • user can unblind m, to get m signed rsa

  • This works because RSA keys satisfy this equation rsa and this rsa

4.- Conclusions

  • This is just a proof of concept, as an extra project in a university small subject. Is not a full finalized project.
  • Cryptographic blind signature is very powerful, and also, can be combined with homomorphic encryption properties, to make secure and anonymous systems.
  • In this proof of concept, the smart contract integration is not finished, and is using ethereum Smart Contracts, but can be implemented using any other blockchain technology. At the beginning I tried to implement a complete p2p network and a blockchain from scratch (but was not a good idea having a short amount of time).
  • A decentralized anonymized login system over blockchain, can have lots of applications for example, can be useful to authentication for centralized and decentralized platforms, for voting systems, for health systems, for exchanges, for anonymous reputation systems, etc.

darkid's People

Contributors

arnaucube avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.