Merge "Fix operation auth bound keys."
This commit is contained in:
@@ -18,7 +18,7 @@ package android.hardware.biometrics;
|
||||
|
||||
import android.annotation.NonNull;
|
||||
import android.security.identity.IdentityCredential;
|
||||
import android.security.keystore.AndroidKeyStoreProvider;
|
||||
import android.security.keystore2.AndroidKeyStoreProvider;
|
||||
|
||||
import java.security.Signature;
|
||||
|
||||
|
||||
@@ -62,10 +62,8 @@ public class AndroidKeyStoreProvider extends Provider {
|
||||
*/
|
||||
@UnsupportedAppUsage
|
||||
public static long getKeyStoreOperationHandle(Object cryptoPrimitive) {
|
||||
if (cryptoPrimitive == null) {
|
||||
throw new NullPointerException();
|
||||
}
|
||||
return 0;
|
||||
return android.security.keystore2.AndroidKeyStoreProvider
|
||||
.getKeyStoreOperationHandle(cryptoPrimitive);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user