mirror of
https://github.com/logos-messaging/lab.waku.org.git
synced 2026-01-05 15:23:08 +00:00
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
import { sha256 } from '@noble/hashes/sha256';
|
|
import { bytesToHex } from '@noble/hashes/utils';
|
|
|
|
export function hash(data: string) {
|
|
return bytesToHex(sha256(data));
|
|
}
|
|
|