[json] don't use md5 (#201971)
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`;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue