You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/session/messages/outgoing/content/SessionEstablishedMessage.ts

34 lines
1.0 KiB
TypeScript

import { ContentMessage } from './ContentMessage';
import { SignalService } from '../../../../protobuf';
import * as crypto from 'crypto';
import { MessageParams } from '../Message';
import { Constants } from '../../..';
export class SessionEstablishedMessage extends ContentMessage {
public readonly padding: Buffer;
constructor(params: MessageParams) {
super({ timestamp: params.timestamp, identifier: params.identifier });
// Generate a random int from 1 and 512
const buffer = crypto.randomBytes(1);
// tslint:disable-next-line: no-bitwise
const paddingLength = (new Uint8Array(buffer)[0] & 0x1ff) + 1;
// Generate a random padding buffer of the chosen size
this.padding = crypto.randomBytes(paddingLength);
}
public ttl(): number {
return Constants.TTL_DEFAULT.SESSION_ESTABLISHED;
}
public contentProto(): SignalService.Content {
const nullMessage = new SignalService.NullMessage({});
nullMessage.padding = this.padding;
return new SignalService.Content({
nullMessage,
});
}
}