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β¦
Top comments (2)
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...
Thanks for your reply. I'll surely check it out.