C# 클래스 Lidgren.Network.Authentication.NetSRP.Response

This is the Secure Remote Password Protocol Response object. Remember Claire? She has send a request to Bob, the one she want to connect to. When Bob receives Claire's username and public Key, he will send Claire her personal Salt and a random runtime-generated public key.
상속: Packet
파일 보기 프로젝트 열기: SleeplessByte/lidgren-srp6a 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
B NetBigInteger
Salt Byte[]

공개 메소드들

메소드 설명
Response ( ) : System

Creates a new SRPResponse

Response ( Byte salt, NetBigInteger B ) : System

Creates a new SRPResponse

보호된 메소드들

메소드 설명
Gets ( NetIncomingMessage message ) : void

Gets data from message

Puts ( NetOutgoingMessage message ) : void

Puts data into message

메소드 상세

Gets() 보호된 메소드

Gets data from message
protected Gets ( NetIncomingMessage message ) : void
message NetIncomingMessage source
리턴 void

Puts() 보호된 메소드

Puts data into message
protected Puts ( NetOutgoingMessage message ) : void
message NetOutgoingMessage desination
리턴 void

Response() 공개 메소드

Creates a new SRPResponse
public Response ( ) : System
리턴 System

Response() 공개 메소드

Creates a new SRPResponse
public Response ( Byte salt, NetBigInteger B ) : System
salt Byte Salt
B NetBigInteger Public value
리턴 System

프로퍼티 상세

B 공개적으로 프로퍼티

Public key B
public NetBigInteger B
리턴 NetBigInteger

Salt 공개적으로 프로퍼티

Salt
public Byte[] Salt
리턴 Byte[]