react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
11 lines (9 loc) • 412 B
JavaScript
import { createHash } from 'crypto';
export const oneWayHash = payload => {
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');
};