• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto3";
2
3package aae.trustagent;
4
5option java_package = "com.android.car.PhoneAuthProtos";
6option java_outer_classname = "PhoneAuthProto";
7
8message PhoneCredentials {
9  // Required field representing the escrow token that needs to be sent for authenticating the user
10  bytes escrow_token = 1;
11
12  // Required field representing the handle associated with the escrow token that needs to be sent
13  // for authenticating the user
14  bytes handle = 2;
15}
16