+ 2
Strong passwords
Is there any universal algorithm for strong passwords?
6 Respuestas
+ 4
It must be a mix of alphabets & numbers at least one valid special character no less than eight characters
+ 2
if you make your password "strong", it will be weak. Don't you think that is a funny?
+ 2
Usually you have to include numeric digits. Capital letter. Symbols. ECT
+ 2
Could we introduce emojis in passwords ? 😁
- 1
look my passwort generator on my account (it woks)
- 1
# Created by Arazuhl
# generate a password with length "passlen" with no duplicate characters in the password
import random
s = "01234567890"
passlen = 8 #<--your number of numbers
p = "".join(ran
dom.sample(s,passlen ))
print (p)