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.
次のコマンドを使用して圧縮された md5 値を取得するために python hashlib を使用しています。互換性のある関数を教えてもらえますか?
hashlib.md5('my string').hexdigest()
$string = 'my string' $encoded_string = md5($string);
echo md5('apple'); // => 1f3870be274f6c49b3e31a0c6728957f
と同じ結果を生成します
require 'digest/md5'; print Digest::MD5.hexdigest('apple'); # => 1f3870be274f6c49b3e31a0c6728957f