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
We should encode userdata for preventing it from access via getting access to data storage (Redis, File). Probably each user credentials should be stored as Base-64 encoded string, this feature should be taken into account in Ferrum CLI too
The text was updated successfully, but these errors were encountered:
For Realm we should create additional non-mapping field PasswordSalt to Realm object
When creating a new User we should make a password hash as follows - hash(password+salt), where hash is the hashing func, this algorithm is working for non-federated Users. In the credentials field in the passwordwe store a hash
We should have a separate module for hashing and save hash_type to credentials too.
Salt must be created automatically when we create Realm; every Realm must have its own salt.
We should encode userdata for preventing it from access via getting access to data storage (Redis, File). Probably each user credentials should be stored as Base-64 encoded string, this feature should be taken into account in
Ferrum CLI
tooThe text was updated successfully, but these errors were encountered: