mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-08 16:53:10 +00:00
* changing default pubsub topic to its static sharding version * keeping RFC's Waku Message test vectors * reverting change in changelog * setting pubsub topic when creating nwaku node * adding shardInfo to runMultipleNodes call * adding shardInfo to runMultipleNodes call in lightpush tests * add pubsub topics to nwaku.start * get rid of it.only that remained * fixing compliance tests * setting clusterId to 0 * removing unnecessary fix * adding shardInfo when creating nodes * fixing wait for remote peer tests * fixing peer exchange test * refactor * removing unnecessary variable * feat: create default shard info, update tests (#2085) * feat: create default shard info, update tests * add link * fix tests * remoe only * up tests * up test --------- Co-authored-by: Sasha <118575614+weboko@users.noreply.github.com>
208 lines
5.5 KiB
TypeScript
208 lines
5.5 KiB
TypeScript
import { Decoder as DecoderV0 } from "@waku/core/lib/message/version_0";
|
|
import {
|
|
type EncoderOptions as BaseEncoderOptions,
|
|
type IDecoder,
|
|
type IEncoder,
|
|
type IMessage,
|
|
type IMetaSetter,
|
|
type IProtoMessage,
|
|
type PubsubTopic,
|
|
type SingleShardInfo
|
|
} from "@waku/interfaces";
|
|
import { WakuMessage } from "@waku/proto";
|
|
import { determinePubsubTopic, Logger } from "@waku/utils";
|
|
|
|
import { generateSymmetricKey } from "./crypto/utils.js";
|
|
import { DecodedMessage } from "./decoded_message.js";
|
|
import {
|
|
decryptSymmetric,
|
|
encryptSymmetric,
|
|
postCipher,
|
|
preCipher
|
|
} from "./encryption.js";
|
|
import { OneMillion, Version } from "./misc.js";
|
|
|
|
export {
|
|
decryptSymmetric,
|
|
encryptSymmetric,
|
|
postCipher,
|
|
preCipher,
|
|
generateSymmetricKey
|
|
};
|
|
|
|
const log = new Logger("message-encryption:symmetric");
|
|
|
|
class Encoder implements IEncoder {
|
|
public constructor(
|
|
public pubsubTopic: PubsubTopic,
|
|
public contentTopic: string,
|
|
private symKey: Uint8Array,
|
|
private sigPrivKey?: Uint8Array,
|
|
public ephemeral: boolean = false,
|
|
public metaSetter?: IMetaSetter
|
|
) {
|
|
if (!contentTopic || contentTopic === "") {
|
|
throw new Error("Content topic must be specified");
|
|
}
|
|
}
|
|
|
|
public async toWire(message: IMessage): Promise<Uint8Array | undefined> {
|
|
const protoMessage = await this.toProtoObj(message);
|
|
if (!protoMessage) return;
|
|
|
|
return WakuMessage.encode(protoMessage);
|
|
}
|
|
|
|
public async toProtoObj(
|
|
message: IMessage
|
|
): Promise<IProtoMessage | undefined> {
|
|
const timestamp = message.timestamp ?? new Date();
|
|
const preparedPayload = await preCipher(message.payload, this.sigPrivKey);
|
|
|
|
const payload = await encryptSymmetric(preparedPayload, this.symKey);
|
|
|
|
const protoMessage = {
|
|
payload,
|
|
version: Version,
|
|
contentTopic: this.contentTopic,
|
|
timestamp: BigInt(timestamp.valueOf()) * OneMillion,
|
|
meta: undefined,
|
|
rateLimitProof: message.rateLimitProof,
|
|
ephemeral: this.ephemeral
|
|
};
|
|
|
|
if (this.metaSetter) {
|
|
const meta = this.metaSetter(protoMessage);
|
|
return { ...protoMessage, meta };
|
|
}
|
|
|
|
return protoMessage;
|
|
}
|
|
}
|
|
|
|
export interface EncoderOptions extends BaseEncoderOptions {
|
|
/** The symmetric key to encrypt the payload with. */
|
|
symKey: Uint8Array;
|
|
/** An optional private key to be used to sign the payload before encryption. */
|
|
sigPrivKey?: Uint8Array;
|
|
}
|
|
|
|
/**
|
|
* Creates an encoder that encrypts messages using symmetric encryption for the
|
|
* given key, as defined in [26/WAKU2-PAYLOAD](https://rfc.vac.dev/spec/26/).
|
|
*
|
|
* An encoder is used to encode messages in the [`14/WAKU2-MESSAGE](https://rfc.vac.dev/spec/14/)
|
|
* format to be sent over the Waku network. The resulting encoder can then be
|
|
* pass to { @link @waku/interfaces!ISender.send } to automatically encrypt
|
|
* and encode outgoing messages.
|
|
*
|
|
* The payload can optionally be signed with the given private key as defined
|
|
* in [26/WAKU2-PAYLOAD](https://rfc.vac.dev/spec/26/).
|
|
*/
|
|
export function createEncoder({
|
|
pubsubTopic,
|
|
pubsubTopicShardInfo,
|
|
contentTopic,
|
|
symKey,
|
|
sigPrivKey,
|
|
ephemeral = false,
|
|
metaSetter
|
|
}: EncoderOptions): Encoder {
|
|
return new Encoder(
|
|
determinePubsubTopic(contentTopic, pubsubTopic ?? pubsubTopicShardInfo),
|
|
contentTopic,
|
|
symKey,
|
|
sigPrivKey,
|
|
ephemeral,
|
|
metaSetter
|
|
);
|
|
}
|
|
|
|
class Decoder extends DecoderV0 implements IDecoder<DecodedMessage> {
|
|
public constructor(
|
|
pubsubTopic: PubsubTopic,
|
|
contentTopic: string,
|
|
private symKey: Uint8Array
|
|
) {
|
|
super(pubsubTopic, contentTopic);
|
|
}
|
|
|
|
public async fromProtoObj(
|
|
pubsubTopic: string,
|
|
protoMessage: IProtoMessage
|
|
): Promise<DecodedMessage | undefined> {
|
|
const cipherPayload = protoMessage.payload;
|
|
|
|
if (protoMessage.version !== Version) {
|
|
log.error(
|
|
"Failed to decrypt due to incorrect version, expected:",
|
|
Version,
|
|
", actual:",
|
|
protoMessage.version
|
|
);
|
|
return;
|
|
}
|
|
|
|
let payload;
|
|
|
|
try {
|
|
payload = await decryptSymmetric(cipherPayload, this.symKey);
|
|
} catch (e) {
|
|
log.error(
|
|
`Failed to decrypt message using asymmetric decryption for contentTopic: ${this.contentTopic}`,
|
|
e
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (!payload) {
|
|
log.error(
|
|
`Failed to decrypt payload for contentTopic ${this.contentTopic}`
|
|
);
|
|
return;
|
|
}
|
|
|
|
const res = postCipher(payload);
|
|
|
|
if (!res) {
|
|
log.error(
|
|
`Failed to decode payload for contentTopic ${this.contentTopic}`
|
|
);
|
|
return;
|
|
}
|
|
|
|
log.info("Message decrypted", protoMessage);
|
|
return new DecodedMessage(
|
|
pubsubTopic,
|
|
protoMessage,
|
|
res.payload,
|
|
res.sig?.signature,
|
|
res.sig?.publicKey
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Creates a decoder that decrypts messages using symmetric encryption, using
|
|
* the given key as defined in [26/WAKU2-PAYLOAD](https://rfc.vac.dev/spec/26/).
|
|
*
|
|
* A decoder is used to decode messages from the [14/WAKU2-MESSAGE](https://rfc.vac.dev/spec/14/)
|
|
* format when received from the Waku network. The resulting decoder can then be
|
|
* pass to { @link @waku/interfaces!IReceiver.subscribe } to automatically decrypt and
|
|
* decode incoming messages.
|
|
*
|
|
* @param contentTopic The resulting decoder will only decode messages with this content topic.
|
|
* @param symKey The symmetric key used to decrypt the message.
|
|
*/
|
|
export function createDecoder(
|
|
contentTopic: string,
|
|
symKey: Uint8Array,
|
|
pubsubTopicShardInfo?: SingleShardInfo | PubsubTopic
|
|
): Decoder {
|
|
return new Decoder(
|
|
determinePubsubTopic(contentTopic, pubsubTopicShardInfo),
|
|
contentTopic,
|
|
symKey
|
|
);
|
|
}
|