mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
6 lines
116 B
Ruby
6 lines
116 B
Ruby
$digest_mutex = Mutex.new
|
|
|
|
def sha1_hexdigest data
|
|
$digest_mutex.synchronize { Digest::SHA1.hexdigest(data) }
|
|
end
|