blob: 638ba803d6d2efb83a164c4017aa2974b52a8eb2 [file] [log] [blame]
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.cts.verifier.biometrics;
import android.hardware.biometrics.BiometricPrompt;
import android.security.keystore.KeyGenParameterSpec;
import android.security.keystore.KeyProperties;
import javax.crypto.KeyGenerator;
import javax.crypto.Mac;
public abstract class AbstractUserAuthenticationMacTest extends AbstractUserAuthenticationTest {
private Mac mMac;
@Override
void createUserAuthenticationKey(String keyName, int timeout, int authType,
boolean useStrongBox) throws Exception {
KeyGenParameterSpec.Builder builder = new KeyGenParameterSpec.Builder(
keyName, KeyProperties.PURPOSE_SIGN);
builder.setUserAuthenticationRequired(true)
.setIsStrongBoxBacked(useStrongBox)
.setUserAuthenticationParameters(timeout, authType);
KeyGenerator keyGenerator = KeyGenerator.getInstance(
KeyProperties.KEY_ALGORITHM_HMAC_SHA256, "AndroidKeyStore");
keyGenerator.init(builder.build());
keyGenerator.generateKey();
}
@Override
void initializeKeystoreOperation(String keyName) throws Exception {
mMac = Utils.initMac(keyName);
}
@Override
BiometricPrompt.CryptoObject getCryptoObject() {
return new BiometricPrompt.CryptoObject(mMac);
}
@Override
void doKeystoreOperation(byte[] payload) throws Exception {
try {
mMac.doFinal(payload);
} finally {
mMac = null;
}
}
}