Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Client security, Core #64

Merged
merged 68 commits into from
Aug 6, 2021
Merged

Client security, Core #64

merged 68 commits into from
Aug 6, 2021

Conversation

polymorpher
Copy link
Owner

@polymorpher polymorpher commented Aug 2, 2021

The recovery mechanism needs to be adjusted, since now it is no longer possible to brute-force the OTP.

The UI needs to be adapted to accommodate for the (optional) second OTP. Later we might add a function on smart contract to allow replacing the root, so the user can seamlessly transition a single OTP wallet to double OTP. For now we can just let the user decide upfront and ask them to create a new wallet if they want double OTP.

Some minor frontend logic needs to be updated to use the new hasher (argon2) with appropriate randomness (e.g. 16-17 bits). Later we can optimize the speed by parallelizing it (so we gain 1-3 more bits of randomness). For now we can just use a slightly lower randomness parameter to make it fast.

The sha256 hasher is already fast enough to support ~20 bits of randomness. Based on previous benchmark (see /benchmark and /legacy/client folders), double SHA256 can be done in-browser in ~1.5 second using a single thread on mid-tier iMac 2014, and ~1.2 second on a 2018 MacBook Pro, single-threaded.

It should also be noted that the implementation relies on a customized Argon2 that made it more efficient for computing hashes in batch: https://github.com/polymorpher/argon2-browser. Note that there is still a lot of room for improvement in the customized version. For example, right now each hash computation still triggers a full initialization and destruction sequence in the underlying C code, which involves a large number of malloc and free. They can be improved by doing malloc and free only once for the entire batch. The javascript code could also parallelize the workload and obtain at least 2-4x speed boost for today's typical hardware. A deeper dive into the C code may also allow us to remove salt and align each input to a single 32-byte word, and optimize the code further for 32-byte blocks of input. With these improvements, it can be expected that the randomness bits can be improved to ~20 with argon2, i.e. close to ~1M as originally proposed in Client Security.

Other than these low hanging fruits, we can identify further bottleneck by comprehensively profiling and benchmarking the C code.

@polymorpher
Copy link
Owner Author

updated with some comments regarding argon2 implementation

Client security: enable randomness by default
@polymorpher
Copy link
Owner Author

All items are done except argon2 speed optimization. I will create separate issues to document that (as already analyzed above)

Copy link
Collaborator

@ivan-homoliak-sutd ivan-homoliak-sutd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems good to me. More importantly, the wallet would need a mechanism and protocol to replace the root hash.

@polymorpher
Copy link
Owner Author

Yes, I also made a similar conclusion in #67 for different reasons

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants