xiaoju-survey/server/src/utils/hash256.ts

6 lines
130 B
TypeScript
Raw Normal View History

2024-03-14 13:50:57 +00:00
import { createHash } from 'crypto';
export function hash256(text) {
return createHash('sha256').update(text).digest('hex');
}