Merge "Keystore 2.0: Fix getKey returns null on key not found." am: 2ced350043 am: d07d143e71

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1578023

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Ib908588b11a32b37871ac7e6f7af2e88fc7e887e
This commit is contained in:
Treehugger Robot
2021-02-06 05:40:46 +00:00
committed by Automerger Merge Worker

View File

@@ -352,14 +352,17 @@ public class AndroidKeyStoreProvider extends Provider {
try {
response = keyStore.getKeyEntry(descriptor);
} catch (android.security.KeyStoreException e) {
if (e.getErrorCode() == ResponseCode.KEY_PERMANENTLY_INVALIDATED) {
throw new KeyPermanentlyInvalidatedException(
"User changed or deleted their auth credentials",
e);
} else {
throw (UnrecoverableKeyException)
new UnrecoverableKeyException("Failed to obtain information about key")
.initCause(e);
switch (e.getErrorCode()) {
case ResponseCode.KEY_NOT_FOUND:
return null;
case ResponseCode.KEY_PERMANENTLY_INVALIDATED:
throw new KeyPermanentlyInvalidatedException(
"User changed or deleted their auth credentials",
e);
default:
throw (UnrecoverableKeyException)
new UnrecoverableKeyException("Failed to obtain information about key")
.initCause(e);
}
}