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.
我正在使用 python hashlib 使用以下命令获取压缩的 md5 值,有人可以帮助我使用兼容的功能吗?
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