Add OEMCrypto_GetBCCType() in L3

It is used by prov4 only. So L3 will just return
OEMCrypto_ERROR_NOT_IMPLEMENTED.

Test: build L3
Bug: 307969500
Change-Id: Iff6c79a3fb0220a6c995186f5923ce5ad6bc256f
This commit is contained in:
Cong Lin
2024-01-25 14:18:42 -08:00
committed by Robert Shih
parent 0e165f6d54
commit d81b8f97b2
2 changed files with 8 additions and 0 deletions

View File

@@ -619,3 +619,7 @@ OEMCryptoResult Level3_LoadRelease(OEMCrypto_SESSION session,
core_message_length, signature,
signature_length);
}
OEMCryptoResult Level3_GetBCCType(OEMCrypto_BCCType* bcc_type) {
return OEMCrypto_ERROR_NOT_IMPLEMENTED;
}