Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2bbd131e authored by Eric Biggers's avatar Eric Biggers Committed by Android (Google) Code Review
Browse files

Merge "Add missing @Override to two ILockSettings methods" into main

parents 4cb20f20 503636d8
Loading
Loading
Loading
Loading
+7 −11
Original line number Diff line number Diff line
@@ -2930,20 +2930,16 @@ public class LockSettingsService extends ILockSettings.Stub {
        return mRecoverableKeyStoreManager.getKey(alias);
    }

    /**
     * Starts a session to verify lock screen credentials provided by a remote device.
     */
    @NonNull
    public RemoteLockscreenValidationSession startRemoteLockscreenValidation() {
    /** Starts a session to verify lock screen credentials provided by a remote device. */
    @Override
    public @NonNull RemoteLockscreenValidationSession startRemoteLockscreenValidation() {
        return mRecoverableKeyStoreManager.startRemoteLockscreenValidation(this);
    }

    /**
     * Verifies encrypted credentials guess from a remote device.
     */
    @NonNull
    public RemoteLockscreenValidationResult
            validateRemoteLockscreen(@NonNull byte[] encryptedCredential) {
    /** Verifies encrypted credentials guess from a remote device. */
    @Override
    public @NonNull RemoteLockscreenValidationResult validateRemoteLockscreen(
            @NonNull byte[] encryptedCredential) {
        return mRecoverableKeyStoreManager.validateRemoteLockscreen(encryptedCredential, this);
    }