hashlibを使用します。ハッシュ化する前にユニコードオブジェクトをエンコードする必要がある
2022-01-21 12:48:31
# hashlib.md5(data) function, the data parameter should be of type bytes
# The data must be converted to bytes before hashing
>>> from hashlib import md5
File "<stdin>", line 1, in <module>
>>> c = md5("helloworld")
TypeError: Unicode-objects must be encoded before hashing
>>> c = md5("helloworld".encode("utf-8"))
>>> print(c.hexdigest())
fc5e038d38a57032085441e7fe7010b0
関連
-
[解決済み】sqlite3.ProgrammingError: 指定されたバインディングの数が正しくありません。現在の文は 1 を使用しており、74 が供給されています。
-
[解決済み] Python用tkinterのインストール
-
[解決済み] Python3でモジュールに属性がないエラーが発生する
-
[解決済み] エラー "TypeError: type numpy.ndarray doesn't define __round__ method"
-
[解決済み] numpy.random.shuffleはNoneを返します。
-
[解決済み] ImportError: sqlalchemy という名前のモジュールがありません。
-
(int "ではなく)strをstrに連結するとエラーが発生する。
-
IndexError: Index 0 is out of bounds for axis 0 with size 0
-
Pythonでbs4をインストールした後、pycharmがModuleNotFoundErrorを報告しました。bs4' という名前のモジュールがありません。
-
非対応Pickleプロトコル
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
[解決済み】AttributeError: pandasのnp.object_d型を使用する文字列値では、.strアクセサしか使用できない
-
ImportErrorの解決に成功しました。必要な依存関係 ['numpy'] がありません。
-
python reports an error: 'NoneType' object has no attribute 'group'
-
[解決済み] Python argparse: デフォルト値または指定された値
-
[解決済み] ImportError: NUMPY_MKLという名前をインポートできません。
-
flask という名前のモジュールがない エラー解決
-
python error TypeError: 'NoneType' object is not subscriptable Solution
-
UnicodeDecodeError: 'ascii' コーデックは、ポジションソリューションのバイト 0xe6 をデコードできません。
-
np.append()関数の使用法
-
経験的モード分解法(EMD)のPythonによる実装