add pc boot support, update cargo.lock
All checks were successful
build docker container automatically / build (push) Successful in 7m7s

This commit is contained in:
2026-07-10 22:33:37 +02:00
parent 0e05fbf08f
commit 4684b0c5ea
7 changed files with 788 additions and 611 deletions

10
gen_pass.py Normal file
View File

@ -0,0 +1,10 @@
from passlib.hash import pbkdf2_sha512
def pbkdf2_sha512_mcf(password: str) -> str:
return pbkdf2_sha512.using(
rounds=100_000,
salt_size=16,
).hash(password)
p = input("pass (will echo) :")
print(pbkdf2_sha512_mcf(p))