wallet
wallet copied to clipboard
Enhanced Password Security
This pull request changes the isValidPassword function to enhance password validation. The function checks if a given password meets the following criteria:
- [x] Contains at least one number
- [x] Contains at least one letter (uppercase or lowercase)
- [x] Contains at least one special character
- [x] Meets the specified minimum length (PASSWORD_LENGTH_MIN)
This can improve security by ensuring that user passwords are stronger and meet the requirements.