Files
Pake/bin/helpers/tauriConfig.ts
2022-11-22 00:24:06 +08:00

9 lines
242 B
TypeScript
Vendored

import crypto from 'crypto';
export function getIdentifier(name: string, url: string) {
const hash = crypto.createHash('md5');
hash.update(url);
const postFixHash = hash.digest('hex').substring(0, 6);
return `pake-${postFixHash}`;
}