mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 00:28:52 +01:00
[json] don't use md5 (#201971)
This commit is contained in:
committed by
GitHub
parent
891a17ab57
commit
851b39876e
@@ -143,5 +143,5 @@ export class JSONSchemaCache {
|
||||
}
|
||||
}
|
||||
function getCacheFileName(uri: string): string {
|
||||
return `${createHash('MD5').update(uri).digest('hex')}.schema.json`;
|
||||
return `${createHash('sha256').update(uri).digest('hex')}.schema.json`;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user