iw4x-client/src/Proto/auth.proto

16 lines
178 B
Protocol Buffer
Raw Normal View History

2016-02-21 13:57:56 -05:00
syntax = "proto3";
package Proto.Auth;
message Response
{
bytes signature = 1;
bytes publickey = 2;
}
2016-02-22 07:37:13 -05:00
message Certificate
{
bytes privatekey = 1;
bytes token = 2;
}