Add suppression comment (#252235)

This commit is contained in:
Alexandru Dima
2025-06-23 23:34:50 +02:00
committed by GitHub
parent 449da857d2
commit e985993a24
+1 -1
View File
@@ -93,7 +93,7 @@ export const hashAsync = (input: string | ArrayBufferView | VSBuffer) => {
buff = input;
}
return crypto.subtle.digest('sha-1', buff as ArrayBufferView<ArrayBuffer>).then(toHexString);
return crypto.subtle.digest('sha-1', buff as ArrayBufferView<ArrayBuffer>).then(toHexString); // CodeQL [SM04514] we use sha1 here for validating old stored client state, not for security
};
const enum SHA1Constant {