Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列があり、これを行うことでhexdigestを使用してmd5を作成できます
import hashlib ver = 'root123' hashlib.md5(ver).hexdigest() 'ff9830c42660c1dd1942844f8069b74a'
今、私はこのプロセスを逆にしたいと思います。hexdigest 文字列があり、それを元の文字列に変換したいと考えています。それらはPythonライブラリですか、それともそれを行う関数ですか
ありがとうございました
md5ハッシュは一方向ハッシュです。元の文字列を戻すことはできません。詳細については、次を参照してください。
md5