1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-11-01 19:07:38 +01:00
unleash.unleash/src/lib/util/anonymise.ts

10 lines
232 B
TypeScript
Raw Normal View History

2022-05-30 16:44:37 +02:00
import { createHash } from 'crypto';
export function anonymise(s: string): string {
const hash = createHash('sha256')
.update(s, 'utf-8')
.digest('hex')
.slice(0, 9);
return `${hash}@unleash.run`;
}