mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2025-08-21 05:47:20 +02:00
Compare commits
No commits in common. "dce5fa32270d9d076b4969102d317a27cee6d18e" and "2e0e86bc2e5c7c071a34d9e169f7ec3e0f6e7bfe" have entirely different histories.
dce5fa3227
...
2e0e86bc2e
@ -86,7 +86,6 @@ repos:
|
|||||||
rev: 23.9.1
|
rev: 23.9.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: black
|
- id: black
|
||||||
args: ["--line-length", "79", "--target-version", "py311"]
|
|
||||||
#- id: black-jupyter
|
#- id: black-jupyter
|
||||||
- repo: https://github.com/scop/pre-commit-shfmt
|
- repo: https://github.com/scop/pre-commit-shfmt
|
||||||
rev: v3.7.0-1
|
rev: v3.7.0-1
|
||||||
|
@ -4,4 +4,6 @@ root = false
|
|||||||
# https://peps.python.org/pep-0008/#indentation
|
# https://peps.python.org/pep-0008/#indentation
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
max_line_length = 79
|
#max_line_length = 79
|
||||||
|
# https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length
|
||||||
|
max_line_length = 88
|
||||||
|
@ -5,9 +5,7 @@ This script generated Keyoxide hashed proofs in argon2id and bcrypt
|
|||||||
|
|
||||||
PROOF = str(input("Enter the proof: "))
|
PROOF = str(input("Enter the proof: "))
|
||||||
|
|
||||||
print(
|
print("$argon2id$v=19$m=64,t=512,p=2$mDejbh8SmFFJPjbjf+u9kQ$yQpomARjYKfgEDAZ1jdgnA")
|
||||||
"$argon2id$v=19$m=64,t=512,p=2$mDejbh8SmFFJPjbjf+u9kQ$yQpomARjYKfgEDAZ1jdgnA",
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
print("$2a$11$kBchZf6QkDDHNhZhd8s7iOcXCuqAz3Qawd5eG5A6RygTtDfeZ9a/y")
|
print("$2a$11$kBchZf6QkDDHNhZhd8s7iOcXCuqAz3Qawd5eG5A6RygTtDfeZ9a/y")
|
||||||
|
@ -22,12 +22,7 @@ def checkssidlen(givenssidlen):
|
|||||||
if givenssidlen <= 32:
|
if givenssidlen <= 32:
|
||||||
print(givenssid, "is", givenssidlen, "long and thus valid length")
|
print(givenssid, "is", givenssidlen, "long and thus valid length")
|
||||||
else:
|
else:
|
||||||
print(
|
print(givenssid, "is", givenssidlen, "to long, please select a different SSID")
|
||||||
givenssid,
|
|
||||||
"is",
|
|
||||||
givenssidlen,
|
|
||||||
"to long, please select a different SSID",
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
# Checking the SSID without _nomap
|
# Checking the SSID without _nomap
|
||||||
|
Loading…
x
Reference in New Issue
Block a user