mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:41:07 +08:00
16 lines
482 B
TypeScript
16 lines
482 B
TypeScript
import type { BinaryLike } from 'crypto';
|
|
import { createHash } from 'crypto';
|
|
|
|
export const oneWayHash = (payload: BinaryLike): string => {
|
|
const hash = createHash('sha256');
|
|
|
|
// Always prepend the payload value with salt. This ensures the hash is truly
|
|
// one-way.
|
|
hash.update('storybook-telemetry-salt');
|
|
|
|
// Update is an append operation, not a replacement. The salt from the prior
|
|
// update is still present!
|
|
hash.update(payload);
|
|
return hash.digest('hex');
|
|
};
|