Merge "Add REENROLL_REQUIRED to IFace" into sc-dev

This commit is contained in:
Ilya Matyukhin 2021-02-24 00:12:21 +00:00 committed by Android (Google) Code Review
commit 61d38188a1
2 changed files with 6 additions and 1 deletions

View file

@ -40,4 +40,5 @@ enum Error {
CANCELED = 5,
UNABLE_TO_REMOVE = 6,
VENDOR = 8,
REENROLL_REQUIRED = 16,
}

View file

@ -87,5 +87,9 @@ enum Error {
*
* LOCKOUT_PERMANENT = 9
*/
}
/**
* Authentication cannot be performed because re-enrollment is required.
*/
REENROLL_REQUIRED = 16,
}