DEV Community

Shweta Gupta
Shweta Gupta

Posted on

User registration & login in Hyperledger fabric

I am working on a project where I need the functionality of user registration and user login. I need some suggestion. What would be the better way of achieving this task?

A.) Old school email & password OR
B.) By using public & private keys?

What I understand from option…

Latest comments (2)

Collapse
 
saiy profile image
SimonNtz

It depends how you want to secure the access to your users' keys.

You can use an GitHub/Google OAuth in top of your fabric client.

Setup a Vault is another option that will give you a more production level security.

However it comes with more integration effort. There is this really good article that explain in details the idea:

medium.com/kompitech/hyperledger-f...

Collapse
 
shwetaudacious profile image
Shweta Gupta

Thanks for your reply. I'll surely check it out.