Table of Contents

Struct CreateAccountDto

Namespace
FishMMO.Auth.Core
Assembly
FishMMO-AuthShared.dll

Transport-agnostic DTOs mirroring the FishNet authentication broadcast structs. These contain no engine or networking framework dependencies.

public struct CreateAccountDto
Inherited Members

Fields

Age

Encrypted age value as UTF-8 string bytes (AES-GCM).

public byte[] Age

Field Value

byte[]

Email

Encrypted email address (AES-GCM).

public byte[] Email

Field Value

byte[]

Salt

SRP salt for password hashing.

public byte[] Salt

Field Value

byte[]

Seq

Explicit message sequence number (client->server).

public uint Seq

Field Value

uint

Username

SRP username as a byte array.

public byte[] Username

Field Value

byte[]

Verifier

SRP verifier for password authentication.

public byte[] Verifier

Field Value

byte[]