ComputeClientSessionValue Method

Lidgren.Network

Collapse imageExpand ImageCopy imageCopyHover image
Computes the client session value

Namespace: Lidgren.Network
Assembly: Lidgren.Network (in Lidgren.Network.dll) Version: 2012.1.7.0 (2012.1.7.0)

Syntax

C#
public static byte[] ComputeClientSessionValue(
	byte[] serverPublicEphemeral,
	byte[] xdata,
	byte[] udata,
	byte[] clientPrivateEphemeral
)
Visual Basic
Public Shared Function ComputeClientSessionValue ( _
	serverPublicEphemeral As Byte(), _
	xdata As Byte(), _
	udata As Byte(), _
	clientPrivateEphemeral As Byte() _
) As Byte()
Visual C++
public:
static array<unsigned char>^ ComputeClientSessionValue(
	array<unsigned char>^ serverPublicEphemeral, 
	array<unsigned char>^ xdata, 
	array<unsigned char>^ udata, 
	array<unsigned char>^ clientPrivateEphemeral
)

Parameters

serverPublicEphemeral
Type: array<System..::..Byte>[]()[][]

[Missing <param name="serverPublicEphemeral"/> documentation for "M:Lidgren.Network.NetSRP.ComputeClientSessionValue(System.Byte[],System.Byte[],System.Byte[],System.Byte[])"]

xdata
Type: array<System..::..Byte>[]()[][]

[Missing <param name="xdata"/> documentation for "M:Lidgren.Network.NetSRP.ComputeClientSessionValue(System.Byte[],System.Byte[],System.Byte[],System.Byte[])"]

udata
Type: array<System..::..Byte>[]()[][]

[Missing <param name="udata"/> documentation for "M:Lidgren.Network.NetSRP.ComputeClientSessionValue(System.Byte[],System.Byte[],System.Byte[],System.Byte[])"]

clientPrivateEphemeral
Type: array<System..::..Byte>[]()[][]

[Missing <param name="clientPrivateEphemeral"/> documentation for "M:Lidgren.Network.NetSRP.ComputeClientSessionValue(System.Byte[],System.Byte[],System.Byte[],System.Byte[])"]

Return Value

[Missing <returns> documentation for "M:Lidgren.Network.NetSRP.ComputeClientSessionValue(System.Byte[],System.Byte[],System.Byte[],System.Byte[])"]

See Also