Source release 19.2.0

This commit is contained in:
Alex Dale
2024-06-25 14:03:53 -07:00
parent b8bdfccebe
commit cd8256726f
89 changed files with 2747 additions and 35949 deletions

View File

@@ -590,7 +590,7 @@ OEMCryptoResult OEMCrypto_LoadRelease(OEMCrypto_SESSION session UNUSED,
}
OEMCryptoResult OEMCrypto_GetEmbeddedDrmCertificate(
uint8_t* public_cert UNUSED, size_t* public_cert_length) {
uint8_t* public_cert UNUSED, size_t* public_cert_length UNUSED) {
return OEMCrypto_ERROR_NOT_IMPLEMENTED;
}
@@ -598,3 +598,9 @@ OEMCryptoResult OEMCrypto_UseSecondaryKey(OEMCrypto_SESSION session_id UNUSED,
bool dual_key UNUSED) {
return OEMCrypto_ERROR_NOT_IMPLEMENTED;
}
OEMCryptoResult OEMCrypto_WrapClearPrivateKey(
const uint8_t* clear_private_key_bytes UNUSED, size_t clear_private_key_length UNUSED,
uint8_t* wrapped_private_key UNUSED, size_t* wrapped_private_key_length UNUSED) {
return OEMCrypto_ERROR_NOT_IMPLEMENTED;
}