mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Avoid SIGSEGV if attest key generation fails.
Add an explicit check that `attested_key_cert_chain.size() > 0`. Bug: 209672758 Test: atest 'PerInstance/AttestKeyTest#AllEcCurves/1_android_hardware_security_keymint_IKeyMintDevice_strongbox' Signed-off-by: Brian J Murray <brianjmurray@google.com> Change-Id: I4f7cb4fb1a30f26e6ef15c54714699f6ae91ba36
This commit is contained in:
@@ -583,6 +583,7 @@ TEST_P(AttestKeyTest, AllEcCurves) {
|
||||
attest_key, &attested_key_blob, &attested_key_characteristics,
|
||||
&attested_key_cert_chain));
|
||||
|
||||
ASSERT_GT(attested_key_cert_chain.size(), 0);
|
||||
CheckedDeleteKey(&attested_key_blob);
|
||||
|
||||
AuthorizationSet hw_enforced = HwEnforcedAuthorizations(attested_key_characteristics);
|
||||
@@ -612,6 +613,7 @@ TEST_P(AttestKeyTest, AllEcCurves) {
|
||||
attest_key, &attested_key_blob, &attested_key_characteristics,
|
||||
&attested_key_cert_chain));
|
||||
|
||||
ASSERT_GT(attested_key_cert_chain.size(), 0);
|
||||
CheckedDeleteKey(&attested_key_blob);
|
||||
CheckedDeleteKey(&attest_key.keyBlob);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user