1
0
Fork 0
mirror of https://github.com/Luzifer/password.git synced 2024-11-09 18:00:03 +00:00

Fixed godoc

This commit is contained in:
Knut Ahlers 2015-05-03 10:41:44 +02:00
parent ca37395d2f
commit f612ebaceb

View file

@ -85,9 +85,10 @@ func (s *SecurePassword) GeneratePassword(length int, special bool) (string, err
// CheckPasswordSecurity executes three checks to ensure the passwords // CheckPasswordSecurity executes three checks to ensure the passwords
// meet the security considerations in this package: // meet the security considerations in this package:
// - The password may not contain pattern found on the keyboard or in alphabet //
// - The password must have 3 or 4 different character groups in it // 1. The password may not contain pattern found on the keyboard or in alphabet
// - The password may not have repeating characters // 2. The password must have 3 or 4 different character groups in it
// 3. The password may not have repeating characters
func (s *SecurePassword) CheckPasswordSecurity(password string, needsSpecialCharacters bool) bool { func (s *SecurePassword) CheckPasswordSecurity(password string, needsSpecialCharacters bool) bool {
return !s.hasInsecurePattern(password) && return !s.hasInsecurePattern(password) &&
s.matchesBasicSecurity(password, needsSpecialCharacters) && s.matchesBasicSecurity(password, needsSpecialCharacters) &&