What happens when a custom user is added in ADAudit Plus, regarding password encryption?
When a custom user is added via Admin > Technicians, the system retrieves the password profile and workload factor, generates a bcrypt salt using `BCrypt.gensalt(workload)`, and calls `getEncryptedPassword()` to hash the plaintext password. The algorithm is forced to bcrypt if not already set. The hashed password, salt, algorithm, and factor are then stored in the `aaapassword` table.
user creationcustom userpassword hashinggetEncryptedPasswordbcrypt