This commit is contained in:
Matt Ward 2023-08-31 14:44:14 +01:00 коммит произвёл Matt Ward
Родитель 8eccfa0f96
Коммит 05d4e10b3c
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -377,6 +377,7 @@ namespace Mono.Addins.Database
public static string GetMD5 (string file)
{
// CodeQL [SM02196] Want to continue using MD5 to not break backwards compatibility
using (var md5 = System.Security.Cryptography.MD5.Create ()) {
using (var stream = File.OpenRead (file)) {
var bytes = md5.ComputeHash (stream);