[**Shiro**](https://github.com/Innei/Shiro)の設定には、jwtキーを入力する必要があり、gptに簡単なキー生成コードを書く方法を尋ねました
```py
import secrets
import string
def generate_jwt_secret_key(length):
alphabet = string.ascii_letters + string.digits + "!@#$%^&*()-_=+[]{}|;:,.<>?~"
jwt_secret_key = ''.join(secrets.choice(alphabet) for _ in range(length))
return jwt_secret_key
jwt_secret = generate_jwt_secret_key(32) # 32文字のキーを生成
print(jwt_secret)
私がこの記事を書かなければならない理由は、子供があまりにも未熟で、コードもわからず、ブログすらどう書くかわからないため、この記事を書いて練習することにしました ^^
この記事はMix Spaceから xLog に同期されています
元のリンクはhttps://www.ssstttar.com/posts/programming/jwt