Files
certd/packages/core/basic/src/utils/util.hash.ts
xiaojunnuo 0165ccbaac chore: 1
2024-11-01 00:59:09 +08:00

10 lines
161 B
TypeScript

import crypto from 'crypto';
function md5(data: string) {
return crypto.createHash('md5').update(data).digest('hex');
}
export const hashUtils = {
md5,
};