package
0.0.0-20240626105704-178aa4306d24
Repository: https://github.com/markraiter/simple-blog.git
Documentation: pkg.go.dev
# Functions
ValidateContainsLower checks if password contains at least one lowercase letter
Example:
ValidateContainsLower("password") // true ValidateContainsLower("PASSWORD") // false.
ValidateContainsNumber checks if password contains at least one number
Example:
ValidateContainsNumber("password12345") // true ValidateContainsNumber("password") // false.
ValidateContainsSpecial checks if password contains at least one special character
Example:
ValidateContainsSpecial("password!") // true ValidateContainsSpecial("password") // false.
ValidateContainsUpper checks if password contains at least one uppercase letter
Example:
ValidateContainsUpper("Password") // true ValidateContainsUpper("password") // false.
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author