python/ssid-valid-len.py: initial commit

Ref: #31
This commit is contained in:
Aminda Suomalainen 2021-10-11 10:39:36 +03:00
parent 889c068705
commit 2665445dd8
Signed by: Mikaela
GPG Key ID: DF046339D69EB8C9
1 changed files with 19 additions and 0 deletions

19
python/ssid-valid-len.py Executable file
View File

@ -0,0 +1,19 @@
#!/usr/bin/env python3
'''
This script asks for a SSID name, counts it and tells whether it's of valid
length
'''
# Request input
givenssid = input("Please enter the SSID you are thinking of: ")
#givenssid = "test_nomap"
# Ensure it's UTF-8 and store the size. E.g. åäö are longer than oao
givenssidlen = len(givenssid.encode("utf8"))
# 32 bytes should be the maximum SSID length
if givenssidlen <= 32:
print(givenssid, "is", givenssidlen, "long and thus valid length")
else:
print("Too long, try again")