mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-15 04:03:07 +00:00
* add exports map * merge: master * export subdir with default export path * import according to the export path
21 lines
568 B
TypeScript
21 lines
568 B
TypeScript
import * as secp from "@noble/secp256k1";
|
|
import type { NodeId } from "@waku/interfaces";
|
|
import { bytesToHex } from "@waku/utils/bytes";
|
|
|
|
import { keccak256 } from "./crypto.js";
|
|
export async function sign(
|
|
privKey: Uint8Array,
|
|
msg: Uint8Array
|
|
): Promise<Uint8Array> {
|
|
return secp.sign(keccak256(msg), privKey, {
|
|
der: false,
|
|
});
|
|
}
|
|
|
|
export function nodeId(pubKey: Uint8Array): NodeId {
|
|
const publicKey = secp.Point.fromHex(pubKey);
|
|
const uncompressedPubkey = publicKey.toRawBytes(false);
|
|
|
|
return bytesToHex(keccak256(uncompressedPubkey.slice(1)));
|
|
}
|