Official announcement / policy on Lehi SSID usage?
-
davemoore99
- New Member
- Posts: 29
- Joined: Sun Oct 28, 2012 8:16 am
- Location: Colorado
Re: Official announcement / policy on Lehi SSID usage?
Excellent thank you. I'm just trying to create an efficient work flow for 3 different buildings as the STS
-
ambldsorg
- Member
- Posts: 150
- Joined: Sat Nov 19, 2022 6:44 am
Re: Official announcement / policy on Lehi SSID usage?
One thing that I just realized is that the script that I shared will generate passwords that are too long, at least if I'm to believe the screenshot here:davemoore99 wrote: Sun Jan 18, 2026 5:28 pm Excellent thank you. I'm just trying to create an efficient work flow for 3 different buildings as the STS
https://tech.churchofjesuschrist.org/wi ... s_Networks
It's unfortunate that it only allows a maximum of 15 characters. "Maher-shalal-hash-baz" alone is already 22 characters. Perhaps it should be modified to choose only one name from the list (except of course "Maher-shalal-hash-baz") and a random number and perhaps a non-alphanumeric character.
Here are some changes that will do that, always generating a 15 character password:
Code: Select all
set nnalnum {! \" # $ % & ' ( ) * + , - . / [ \\ ] ^ _ ` ~ : ; < = > ? @ \{ \}}
proc genlehipass {w} {
global bomnames lnames nnalnum
$w delete 1.0 end
while {1} {
set tmppass [lindex $bomnames [expr {int(rand() * $lnames)}]]
if {[expr {[string length $tmppass] + 2}] <= 15} {
set lehipass $tmppass
break
}
}
if {[string length $lehipass] < 13} {
append lehipass [lindex $nnalnum [expr {int(rand() * [llength $nnalnum])}]]
}
append lehipass [expr {int(rand() * pow(10,15-[string length $lehipass]))}]
$w insert end $lehipass
}
Code: Select all
Kumen`895074798
Kumenonhi/65757
Thummim^4019491
-
davemoore99
- New Member
- Posts: 29
- Joined: Sun Oct 28, 2012 8:16 am
- Location: Colorado
Re: Official announcement / policy on Lehi SSID usage?
Once again thank you for taking the time to give me some ideas and share the script. i've got a starting place now!