Struct wow_srp::client::SrpClientReconnection[][src]

pub struct SrpClientReconnection {
    pub challenge_data: [u8; 16],
    pub proof: [u8; 20],
}
Expand description

Contains the challenge data and proof for reconnection.

This is tied completely to the server challenge data passed to SrpClient::calculate_reconnect_values.

Both arrays are little endian.

Fields

challenge_data: [u8; 16]

Random data used in the reconnect challenge.

proof: [u8; 20]

Proof that the client knows the session key.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.