mirror of
https://github.com/nishiki/manage-password.git
synced 2025-03-20 21:34:35 +00:00
fix password generator
This commit is contained in:
parent
01831c1f2b
commit
811c576aae
1 changed files with 2 additions and 4 deletions
|
@ -301,11 +301,9 @@ module MPW
|
||||||
chars = [*('A'..'Z'), *('a'..'z'), *('0'..'9')] if chars.empty?
|
chars = [*('A'..'Z'), *('a'..'z'), *('0'..'9')] if chars.empty?
|
||||||
|
|
||||||
result = ''
|
result = ''
|
||||||
while length > 62
|
length.times do
|
||||||
result << chars.sample(62).join
|
result << chars.sample
|
||||||
length -= 62
|
|
||||||
end
|
end
|
||||||
result << chars.sample(length).join
|
|
||||||
|
|
||||||
result
|
result
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue