Passwords should never be kept in database - proper implementation would calculate MD5 or SHA1 hash of given password and store it, thus in case of successful attack it won't be so easy to obtain lists of passwords. Thus password storage space from database point of view will be fixed.
In terms of input field length, then requiring 6-8 chars minimum is reasonable, but maximum should be set to value that would never allow people to find it, ie 127 or 255 chars. There is no good reason to set maximum to 12-16 chars.
In terms of input field length, then requiring 6-8 chars minimum is reasonable, but maximum should be set to value that would never allow people to find it, ie 127 or 255 chars. There is no good reason to set maximum to 12-16 chars.
Comment