flexmonster-mongo-connector
Version:
Custom data source API implementation for MongoDB
12 lines (9 loc) • 354 B
text/typescript
import * as Crypto from 'crypto';
export class HashGenerator {
public static createHashFromString(input: string): string {
return Crypto.createHash('sha256').update(input).digest('hex');
}
public static createHashFromObject(object: any): string {
return this.createHashFromString(JSON.stringify(object));
}
}