This is a hash-based password generator that generates a unique password in the length of choice based on the following data:- A keyword, set by you- A salt string, set by you- A random salt string, generated by the app- Optional symbols to be addedIt can help you manage your passwords, with the following benefits:- No password storage (online and local) needed. All passwords are computed locally.(Except for settings backup, which is totally optional)- Different combinations of the above data will always produce unique passwords.- Easy to deprecate a set of passwords simply by changing one of salt values.The password is generated from a hash value computed by the mix of these data, with a slicing algorithm applied. The source code and technical details can be found in https://github.com/xlfdll/FPGMobile.