You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 25, 2021. It is now read-only.
I looked at all the current issues, pull requests and most of the forks (on GitHub). I noticed almost all changes deal with native code support. Either they want to get rid of specific native libs (because they cause crashes) or they want to support currently unsupported architectures. One PR even wants to get rid of the Java impl such that only native code can be used.
I think a clean way of handling all these cases would be splitting the project into modules:
scrypt-api: contains only the interfaces.
scrypt-impl-java: cointains the Java implementation.
Of course variations are possible, for example scrypt-impl-java could stay with scrypt-api, or scrypt-impl-desktop could be split into separate scrypt-impl-linux, scrypt-impl-windows and scrypt-impl-macos modules.
Ideally all the modules are built from source, rather than including binary blobs like today.
The idea is for example an Android app would depend on scrypt-impl-android and get all it needs (but not more).
@wg Would you be ok with this concept? You don't necessarly need to implement it yourself.