RXSM update server
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。

9 行
174B

  1. # Created 2019-09-11 by NGnius
  2. from hashlib import sha512
  3. password = input('password: ')
  4. with open('.token', 'w') as f:
  5. f.write(sha512(password.encode()).hexdigest())