* Support getting a user's password salt via initial websocket connection (added to Event_ServerIdentification) * Nonsense stuff to figure out later * move passwordhasher to correct location * protobuf changes * add ext to protobuf * implement request password salt server side * add supportspasswordhash to server identification * check backwards compatibility * reset some changes to master * implement get password salt client side * implement checking hashed passwords on server login * check for registration requirement on getting password salt * properly check password salt response and show errors * remove unused property * add password salt to list of response types Co-authored-by: ZeldaZach <zahalpern+github@gmail.com>
16 lines
452 B
Protocol Buffer
16 lines
452 B
Protocol Buffer
syntax = "proto2";
|
|
import "session_event.proto";
|
|
|
|
message Event_ServerIdentification {
|
|
extend SessionEvent {
|
|
optional Event_ServerIdentification ext = 500;
|
|
}
|
|
enum ServerOptions {
|
|
NoOptions = 0;
|
|
SupportsPasswordHash = 1;
|
|
}
|
|
optional string server_name = 1;
|
|
optional string server_version = 2;
|
|
optional uint32 protocol_version = 3;
|
|
optional ServerOptions server_options = 4 [default = NoOptions];
|
|
}
|