mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2025-01-18 22:36:27 +01:00
Merge branch 'handshake-init-diffie' of https://github.com/oobjectt/nitro-renderer into oobjectt-handshake-init-diffie
This commit is contained in:
commit
0b0e71efd7
File diff suppressed because one or more lines are too long
@ -433,4 +433,5 @@ export class IncomingHeader
|
||||
public static EXTENDED_PROFILE_CHANGED = 876;
|
||||
public static WELCOME_GIFT_CHANGE_EMAIL_RESULT = 2293;
|
||||
public static WELCOME_GIFT_STATUS = 2707;
|
||||
public static HANDSHAKE_INIT_DIFFIE = 1347;
|
||||
}
|
||||
|
@ -0,0 +1,16 @@
|
||||
import { IMessageEvent } from '../../../../../api';
|
||||
import { MessageEvent } from '../../../../../events';
|
||||
import { InitDiffieHandshakeParser } from '../../parser';
|
||||
|
||||
export class InitDiffieHandshakeEvent extends MessageEvent implements IMessageEvent
|
||||
{
|
||||
constructor(callBack: Function)
|
||||
{
|
||||
super(callBack, InitDiffieHandshakeParser);
|
||||
}
|
||||
|
||||
public getParser(): InitDiffieHandshakeParser
|
||||
{
|
||||
return this.parser as InitDiffieHandshakeParser;
|
||||
}
|
||||
}
|
@ -1,3 +1,4 @@
|
||||
export * from './DisconnectReasonEnum';
|
||||
export * from './DisconnectReasonEvent';
|
||||
export * from './InitDiffieHandshakeEvent';
|
||||
export * from './NoobnessLevelMessageEvent';
|
||||
|
@ -0,0 +1,32 @@
|
||||
import { IMessageDataWrapper, IMessageParser } from '../../../../../api';
|
||||
|
||||
export class InitDiffieHandshakeParser implements IMessageParser
|
||||
{
|
||||
private _encryptedPrime: string;
|
||||
private _encryptedGenerator: string;
|
||||
|
||||
public flush(): boolean
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public parse(wrapper: IMessageDataWrapper): boolean
|
||||
{
|
||||
if(!wrapper) return false;
|
||||
|
||||
this._encryptedPrime = wrapper.readString();
|
||||
this._encryptedGenerator = wrapper.readString();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public get encryptedPrime(): string
|
||||
{
|
||||
return this._encryptedPrime;
|
||||
}
|
||||
|
||||
public get encryptedGenerator(): string
|
||||
{
|
||||
return this._encryptedGenerator;
|
||||
}
|
||||
}
|
@ -1,2 +1,3 @@
|
||||
export * from './DisconnectReasonParser';
|
||||
export * from './InitDiffieHandshakeParser';
|
||||
export * from './NoobnessLevelMessageParser';
|
||||
|
Loading…
Reference in New Issue
Block a user