You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
3.3 KiB

7 years ago
  1. # darkID
  2. Blockchain based anonymous distributed ID system
  3. ### Main concept
  4. The objective is to guarantee a decentralized login system, but making sure that registered users are real ones and there are no bots generating large amounts of accounts. Only the verified (by email or phone) users can generate an anonymous ID (the Public-Key blind signed).
  5. ![screenshot](https://raw.githubusercontent.com/arnaucode/darkID/master/documentation/screenshot01.png "screenshot")
  6. ![screenshot](https://raw.githubusercontent.com/arnaucode/darkID/master/documentation/screenshot02.png "screenshot")
  7. ## How it works?
  8. #### Network infrastructure
  9. ![network](https://raw.githubusercontent.com/arnaucode/darkID/master/documentation/darkID-network.png "network")
  10. #### Step by step process
  11. 1. Once all the nodes of the network are running, a new user can connect to the server-ID-signer.
  12. 2. The user registers a non anonymous user (using email, phone, password, etc), and performs the login with that user
  13. 3. The user, locally, generates a RSA key pair (private key & public key)
  14. 4. The user blinds his Public-Key with the server-ID-signer Public-Key
  15. 5. The user's Public-Key blinded, is sent to the server-ID-signer
  16. 6. The server-ID-signer Blind Signs the Public-Key blinded from the user, and returns it to the user
  17. 7. The user unblinds the Public-Key signed by the server-ID-signer, and now has the Public-Key Blind Signed by the server-ID-signer
  18. 8. The user sends the Public-Key blind signed to the p2p network
  19. 9. The peers verify that the Public-Key Blind Signed is correctly signed by the server-ID-signer, if it is, they add the Public-Key to the Ethereum Blockchain, inside a new block
  20. 10. Then, when the user wants to login into a platform, just needs to put his Public-Key
  21. 11. The platform goes to the Ethereum Blockchain, to check if this Public-Key is registered in the blockchain
  22. 12. 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
  23. ##### RSA encryption system
  24. https://en.wikipedia.org/wiki/RSA_cryptosystem
  25. - Public parameters: (e, n)
  26. - Private parameters: (d, p, q, phi, sigma)
  27. - Public-Key = (e, n)
  28. - Private-Key = (d, n)
  29. - Encryption:
  30. ![rsa](https://wikimedia.org/api/rest_v1/media/math/render/svg/fbfc70524a1ad983e6f3aac51226b9ca92fefb10 "rsa")
  31. - Decryption:
  32. ![rsa](https://wikimedia.org/api/rest_v1/media/math/render/svg/10227461ee5f4784484f082d744ba5b8c468668c "rsa")
  33. ##### Blind signature process
  34. https://en.wikipedia.org/wiki/Blind_signature
  35. - m is the message (in our case, is the Public-Key of the user to be blinded)
  36. ![rsa](https://wikimedia.org/api/rest_v1/media/math/render/svg/a59b57fa153c8b327605672caadb0ecf59e5795a "rsa")
  37. - server-ID-signer blind signs m'
  38. ![rsa](https://wikimedia.org/api/rest_v1/media/math/render/svg/e726b003ff1649f9254032cffae42d80577da787 "rsa")
  39. - user can unblind m, to get m signed
  40. ![rsa](https://wikimedia.org/api/rest_v1/media/math/render/svg/e96fad0e1d46ec4c55986d1c8fc84e8c44259ecc "rsa")
  41. - This works because RSA keys satisfy this equation
  42. ![rsa](https://wikimedia.org/api/rest_v1/media/math/render/svg/d6bd21fb4e25c311df07b50c313a248d978c3212 "rsa") and this ![rsa](https://wikimedia.org/api/rest_v1/media/math/render/svg/c13170a26e031125b417f22644fb64384c04eea7 "rsa")